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)
  }
}
mhahsler/arules documentation built on June 15, 2025, 9:40 a.m.