chk_unused {chk} | R Documentation |
Checks if ... is unused
length(list(...)) == 0L
chk_unused(...)
vld_unused(...)
... |
Additional arguments. |
The chk_
function throws an informative error if the test fails.
vld_unused()
: Validate ... Unused
Other chk_ellipsis:
chk_used()
# chk_unused
fun <- function(x, ...) {
chk_unused(...)
x
}
fun(1)
try(fun(1, 2))
# vld_unused
fun <- function(x, ...) {
vld_unused(...)
}
fun(1)
try(fun(1, 2))