ellipsis (version 0.2.0.1)

check_dots_unnamed: Check that all dots are unnamed

Description

Named arguments in ... are often a sign of misspelled argument names.

Usage

check_dots_unnamed(env = parent.frame())

Arguments

env

Environment in which to look for ....

Examples

Run this code
# NOT RUN {
f <- function(..., foofy = 8) {
  check_dots_unnamed()
  c(...)
}

f(1, 2, 3, foofy = 4)
try(f(1, 2, 3, foof = 4))
# }

Run the code above in your browser using DataCamp Workspace