Nothing
mintersect <- function(...){
wrk <- list(...)
if(length(wrk)==0) # 2015-02-12 was: return(character(0))
stop("no arguments supplied, at least one is required")
res <- wrk[[1]]
if(length(wrk) > 1)
for(i in 2:length(wrk))
res <- intersect(res, wrk[[i]])
res
}
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.