Description Usage Arguments Details Value Examples
Function also handles error checking to ensure args contain valid data types, and looks for common usage mistakes.
1 | cmd_list_interp(args, flag_lookup = NULL)
|
args |
named list output from get*Args family of functions. |
flag_lookup |
optional named vector used to convert args to command flags |
The list structure is more amenable to manipulation by package developers for advanced use before evaluating them to the command flags vector with cmd_list_to_flags().
named list
1 2 3 4 | theFunction <- function(...){cmd_args_all()}
theArgs <- theFunction(arg1 = "value", arg2 = TRUE)
flagList <- cmd_list_interp(theArgs)
flags <- cmd_list_to_flags(flagList)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.