powered by
Constructs a list from the provided arguments where all elements are named. This wraps rlang::dots_list() but changes two defaults:
rlang::dots_list()
.named is set to TRUE
.named
TRUE
.homonyms is set to "error"
.homonyms
"error"
named_list(...)
A named list.
Arguments to collect in a list. These dots are dynamic.
Other parameters retain their defaults from rlang::dots_list():
.ignore_empty = "trailing"
.preserve_empty = FALSE
.check_assign = FALSE