Collect all (or some given number of) values from an iteror, returning a vector of the given type.
# S3 method for iteror
as.list(x, n = as.integer(2^31 - 1), ...)# S3 method for iteror
as.double(x, n = as.integer(2^31 - 1), ...)
# S3 method for iteror
as.numeric(x, n = as.integer(2^31 - 1), ...)
# S3 method for iteror
as.logical(x, n = as.integer(2^31 - 1), ...)
# S3 method for iteror
as.character(x, n = as.integer(2^31 - 1), ...)
# S3 method for iteror
as.vector(x, mode)
The returned value will be n
elements long if the
iterator did not stop.
an iterable object
the maximum number of elements to return.
Unused arguments will throw an error.
What mode to use for the output vector.
concat take