| vec_unchop {vctrs} | R Documentation |
vec_unchop() has been renamed to list_unchop() and is deprecated as of
vctrs 0.5.0.
vec_unchop(
x,
indices = NULL,
ptype = NULL,
name_spec = NULL,
name_repair = c("minimal", "unique", "check_unique", "universal")
)
x |
A vector |
indices |
For For |
ptype |
If |
name_spec |
A name specification for combining
inner and outer names. This is relevant for inputs passed with a
name, when these inputs are themselves named, like
See the name specification topic. |
name_repair |
How to repair names, see |
vec_chop(): A list of size vec_size(indices) or, if indices == NULL,
vec_size(x).
list_unchop(): A vector of type vec_ptype_common(!!!x), or ptype, if
specified. The size is computed as vec_size_common(!!!indices) unless
the indices are NULL, in which case the size is vec_size_common(!!!x).