#' @export
as.TypedDictionary <- function(x,...){
UseMethod("as.TypedDictionary")
}
#' @export
as.TypedDictionary.matrix <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.xts <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.data.frame <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.list <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.integer <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.numeric <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.complex <- function(x,...){
TypedDictionary$new(x,...)
}
#' @export
as.TypedDictionary.dictionary <- function(x,...){
TypedDictionary$new(x,...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.