bdVectors, as in
c(), but without naming the components.
concat(...) concat.two(x, y)
bdVector to concatenate.
bdVector to concatenate.
bdVectors to concatenate.
The
concat function calls
concat.two recursively to concatenate its
arguments together.
concat.two is a generic function;
to make methods for new classes, it is only
necessary to make methods for the
concat.two function. Usually, you would not call
concat.two
directly, but you could call it for efficiency.
# the following will be a character vector without names concat(1, 2, x=3.3, y="hi") # the following will be the same vector with names c(1, 2, x=3.3, y="hi")