powered by
Convert flag list to vector of command flags
cmd_list_to_flags(flagList, prefix = "-", sep = ",")
output from cmd_list_interp(). A named list where names correspond to flags and members correspond to the value for the flag.
flag prefix, usually "-" or "--".
separator to use if flag has a vector of values (default: NULL).
character vector of parsed commandline flags followed by their values
# NOT RUN { theFunction <- function(...){cmd_args_all()} theArgs <- theFunction(arg1 = "value", arg2 = TRUE) flagList <- cmd_list_interp(theArgs) flags <- cmd_list_to_flags(flagList) # }
Run the code above in your browser using DataLab