powered by
Checks that an object inherits from one or more classes.
check_classes(x, classes = character(0), exclusive = FALSE, order = FALSE, x_name = substitute(x), error = TRUE)
The object to check.
A character vector of the classes x should inherit from.
A flag indicating whether other classes are not permitted.
A flag indicating whether the object classes have to occur in the same order as classes.
A string of the name of the object.
A flag indicating whether to throw an informative error or immediately generate an informative message if the check fails.
An invisible copy of x (if it doesn't throw an error).
The classes of an object can be returned using the `class()` function.
check_inherits
# NOT RUN { check_classes(list()) check_classes(list(), "list") check_classes(list(), "numeric", error = FALSE) # }
Run the code above in your browser using DataLab