R/AAA_nodots.R

Defines functions .nodots

## helper to parse parameter lists with defaults
.nodots <- function(...) {
  l <- list(...)
  if (length(l) > 0L) {
    warning("In ", deparse(sys.calls()[[sys.nframe()-1]]), ":\n",
      "  Unknown arguments: ",
            paste(names(l), "=", l, collapse = ", "), call. = FALSE)
  }
}

Try the arules package in your browser

Any scripts or data that you put into this service are public.

arules documentation built on June 8, 2025, 12:10 p.m.