Create a list of given length
It can be useful to create an empty list that you plan to fill later. This is
similar to the idea of seq_along()
, which creates a vector of the same
length as its input.
list_along(x)
x |
A vector. |
This function might change to vctrs::vec_init()
.
A list of the same length as x
.
x <- 1:5 seq_along(x) list_along(x)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.