R/is.Plot.R

Defines functions is.Plot

########################################################################################################################
#' Test if given object ist of class "Plot"
#' 
#' @return a boolean value
#' 
is.Plot <- function(x) {
	is_plot <- class(x) == "Plot"
    return(is_plot)
}
Sumpfohreule/S4Level2 documentation built on Dec. 18, 2021, 3:04 p.m.