powered by
Make a list using input argument names as names
list_named(...)
arguments whose names become list item names, and whose values become the values in the list
# NOT RUN { a <- c(1, 2) b <- c("c", "d") stopifnot( identical( list_named(a, b), list(a = a, b = b) ) ) # }
Run the code above in your browser using DataLab