Nothing
# -----------------------------------------------------------------------------
# CONSTRUCTOR: hash
# Takes an optional 1 or two parameter
# DEPENDS on method set
# -----------------------------------------------------------------------------
hash <- function( ... ) {
li <- list(...)
# INITIALIZE A NEW HASH
h <- new(
"hash" ,
new.env( hash = TRUE , parent=emptyenv() )
)
if ( length(li) > 0 ) {
if( length(li) > 0 ) .set( h, ... )
}
return(h)
}
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.