Nothing
#[export]
is_element<-function(x,key){
if(is.matrix(x)){
x<-as.vector(x)
}
if(is.character(x)){
.Call(Rfast_is_element_string, x,key)
}else{
.Call(Rfast_is_element, x,key)
}
}
#[export]
is.symmetric <- function(x) {
.Call(Rfast_symmetric,x)
}
#[export]
is_integer <- function(x) {
.Call(Rfast_is_integer,x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.