Nothing
# ---------------------------------------------------------------------
# del.R
#
# METHOD: del
# Remove a list of keys.
# ---------------------------------------------------------------------
setGeneric( "del", function( x, hash ) { standardGeneric("del") } )
setMethod(
"del" ,
signature( "ANY", "hash" ) ,
function ( x, hash ) {
rm( list=make.keys(x), envir=hash@.Data )
}
)
# ALIAS delete
setGeneric( "delete", function( x, hash ) { standardGeneric("delete") } )
setMethod(
"delete",
signature( "ANY", "hash" ) ,
function(x,hash) { del(x,hash) }
)
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.