Learn R Programming

chk (version 0.10.0)

chk_unused: Check ... Unused

Description

Checks if ... is unused

length(list(...)) == 0L

Usage

chk_unused(...)

vld_unused(...)

Value

The chk_ function throws an informative error if the test fails.

Arguments

...

Additional arguments.

Functions

  • vld_unused(): Validate ... Unused

See Also

length()

For more details about the use of this function, please read the article vignette("chk-families").

Other ellipsis_checkers: chk_used()

Examples

Run this code
# 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))

Run the code above in your browser using DataLab