wrapr (version 2.1.0)

stop_if_dot_args: Stop with message if dot_args is a non-trivial list.

Description

Generate a stop with a good error message if the dots argument was a non-trivial list. Useful in writing functions that force named arguments.

Usage

stop_if_dot_args(dot_args, msg = "")

Value

NULL or stop()

Arguments

dot_args

substitute(list(...)) from another function.

msg

character, optional message to prepend.

Examples

Run this code

f <- function(x, ..., inc = 1) {
   stop_if_dot_args(substitute(list(...)), "f")
   x + inc
}
f(7)
f(7, inc = 2)
tryCatch(
  f(7, 2),
  error = function(e) { print(e) }
)

Run the code above in your browser using DataLab