Learn R Programming

vecvec (version 0.1.0)

vecvec: Create a new vector of vectors

Description

Create a new vector of vectors

Usage

vecvec(...)

Value

A vector of vectors of class vecvec.

Arguments

...

Vectors to combine into a single vector without type coercion.

See Also

unvecvec() coerces the mixed-type vector into a single-typed regular vector. new_vecvec() is a performant alternative that accepts a list of vectors rather than ... (suitable for R packages).

Examples

Run this code
vecvec(Sys.Date(), rnorm(3), letters)

Run the code above in your browser using DataLab