InDots.Rd
Returns the value of a specific named argument if it was comprised in the dots or a default value, if it wasn't.
InDots(..., arg, default)
the value of the argument, if it exists else the specified default value.
# Function returns the argument A, if supplied or 999
foobar <- function(...){
DescTools::InDots(..., arg="A", default=99)
}
foobar(A=5)
#> A
#> 5
foobar(B=5, C=8)
#> [1] 99