Nothing
allIntersect <- function(sets, pow2) {
if (! is.list(sets))
stop("argument must be list")
if (! all(sapply(sets, storage.mode) == "integer"))
stop("argument must be list of integer vectors")
if (missing(pow2))
pow2 <- ceiling(log2(100 * max(sapply(sets, length))))
.Call(C_all_intersect, sets, as.integer(pow2))
}
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.