cmd_list_drop: Drop entries from list of flags by name, name/value pair, or...

Description Usage Arguments Value Examples

View source: R/utils.R

Description

Drop entries from list of flags by name, name/value pair, or index

Usage

1

Arguments

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.

Value

flags list with values in drop removed

Examples

 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"))

snystrom/dotargs documentation built on Oct. 18, 2020, 8:39 a.m.