R/check.R

Defines functions check.default check

Documented in check

check <- function(object, ...) {
  UseMethod("check")
}

check.default <- function(object, ...) {
  warning("No 'check' function defined for class '", class(object), "'!")
  return(FALSE)
}

Try the ttutils package in your browser

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

ttutils documentation built on April 5, 2022, 1:15 a.m.