R/is.SubPlot.R

Defines functions is.SubPlot

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