Nothing
##
## Lightweight Consumer streams
##
.Utility <- setRefClass("Utility", contains = "Consumer")
## RawToChar
.RawToChar <- setRefClass("RawToChar",
contains = "Utility",
methods = list(
yield = function()
{
"convert list of raw() to char()"
sapply(callSuper(), rawToChar)
}))
RawToChar <- function(...)
.RawToChar$new(...)
## Rev
.Rev <- setRefClass("Rev",
contains = "Utility",
methods = list(
yield = function()
{
# rev(callSuper())
sapply(callSuper(), rev)
}))
Rev <- function(...)
.Rev$new(...)
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.