args_call.Rd
Builds a named list for function arguments
args_call(...)
Named arguments for the function
Named list of arguments
args_call(x = 10, y = 20, method = "fast") #> $x #> [1] 10 #> #> $y #> [1] 20 #> #> $method #> [1] "fast" #> # Returns: list(x = 10, y = 20, method = "fast")