R/concat.r
c2.Rd
Concatenate vectors into a chunked array
c2(x, y)
a vector or chunked_array object
A chunked_array object
Combine two vector or chunked_array objects into a single chunked_array without copying the underlying data.
Guangchuang Yu
a <- c2(1:100, 101:200) length(a) #> [1] 200 a[150] #> [1] 150