Closed DavisVaughan closed 5 years ago
new_vctr()
vec_data()
Both of these improvements are due to not calling attributes(x) <- list(...), and rather using the direct call of attributes<-(x, value = list(...))
attributes(x) <- list(...)
attributes<-(x, value = list(...))
new_vctr()
only makes 1 copy nowvec_data()
only makes 1 copy nowBoth of these improvements are due to not calling
attributes(x) <- list(...)
, and rather using the direct call ofattributes<-(x, value = list(...))