Nothing
#' Is the input the name of a (formally defined) class?
#'
#' Checks to see if the input is the name of a (formally defined) class.
#'
#' @param x Input to check.
#' @param .xname Not intended to be used directly.
#' @param severity How severe should the consequences of the assertion be?
#' Either \code{"stop"}, \code{"warning"}, \code{"message"}, or \code{"none"}.
#' @return \code{is_class} is a vectorised wrapper for \code{isClass}.
#' \code{assert_is_class} returns nothing but throws an error if
#' \code{is_class} returns \code{FALSE}.
#' @seealso \code{\link[methods]{isClass}}.
#' @examples
#' assert_all_are_classes(c("lm", "numeric"))
#' @importFrom methods isClass
#' @importFrom assertive.properties is_empty
#' @importFrom assertive.base coerce_to
#' @importFrom assertive.base bapply
#' @export
is_class <- function(x, .xname = get_name_in_parent(x))
{
if(is_empty(x)) return(logical())
x <- coerce_to(x, "character")
bapply(x, methods::isClass)
}
#' @importFrom methods is
#' @rdname is_s4
#' @export
is_ref_class_generator <- function(x, .xname = get_name_in_parent(x))
{
if(!is(x, "refObjectGenerator"))
{
return(false(gettext("%s is not a reference class generator."), .xname))
}
TRUE
}
#' @importFrom methods is
#' @rdname is_s4
#' @export
is_ref_class_object <- function(x, .xname = get_name_in_parent(x))
{
if(!is(x, "envRefClass"))
{
return(false(gettext("%s is not a reference class object."), .xname))
}
TRUE
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.