powered by
Checks if is ... used using
length(list(...)) != 0L
chk_used(...)vld_used(...)
vld_used(...)
Additional arguments.
The chk_ function throws an informative error if the test fails.
chk_
The vld_ function returns a flag indicating whether the test was met.
vld_
vld_used: Validate ... Used
vld_used
Other chk_ellipsis: chk_unused()
chk_unused()
# NOT RUN { # chk_used fun <- function(x, ...) { chk_used(...) x } try(fun(1)) fun(1, 2) # vld_used fun <- function(x, ...) { vld_used(...) } fun(1) fun(1, 2) # }
Run the code above in your browser using DataLab