Unpack and assign values to specified names in an environment
Arguments
- names
A list or character vector specifying the names of variables to be assigned.
- values
A list or vector containing the values to be assigned to the names.
Value
NULL. The function performs assignments in the specified environment.
See also
Additional arguments that can be passed to names include
Examples
if (FALSE) { # \dontrun{
c("x", "y") %<...% list(1, 2)
} # }