Description Usage Arguments Value Examples
Drop entries from list of flags by name, name/value pair, or index
1 | cmd_list_drop(flags, drop)
|
flags |
named list output of cmd_list_interp |
drop |
vector of flag entries to drop. Pass a character vector to drop flags by name. Pass a named vector to drop flags by name/value pairs. Pass a numeric vector to drop by position. |
flags list with values in drop removed
1 2 3 4 5 6 7 8 9 10 | exFlags <- list("flag1" = 2, "flag2" = "someText")
cmd_list_drop(exFlags, "flag1")
# will drop flag2 because its name and value match 'drop' vector
cmd_list_drop(exFlags, c("flag2" = "someText"))
# Will drop "flag1" by position index
cmd_list_drop(exFlags, 1)
# won't drop flag2 because its value isn't 'someText'
exFlags2 <- list("flag1" = 2, "flag2" = "otherText")
cmd_list_drop(exFlags, c("flag2" = "someText"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.