Nothing
# This code was contributed by Hadley Wickham
end_iteration <- function() stop('StopIteration', call.=FALSE)
iteration_has_ended <- function(e) {
identical(conditionMessage(e), 'StopIteration')
}
new_iterator <- function(nextElem, ...) {
structure(list(nextElem=nextElem, ...), class=c('abstractiter', 'iter'))
}
is.iterator <- function(x) inherits(x, 'iter')
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.