Description Usage Arguments Value Examples
Convert flag list to vector of command flags
1 | cmd_list_to_flags(flagList, prefix = "-", sep = ",")
|
flagList |
output from cmd_list_interp(). A named list where names correspond to flags and members correspond to the value for the flag. |
prefix |
flag prefix, usually "-" or "–". |
sep |
separator to use if flag has a vector of values (default: NULL). |
character vector of parsed commandline flags followed by their values
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.