R/is_atlas.R

Defines functions is_atlas

Documented in is_atlas

#' Check if object is of class "atlas"
#'
#' Returns TRUE if yes, FALSE if no.
#'
#' @param x atlas object
#'
#' @return boolean
#' @export
#'
is_atlas <- function(x) {
  inherits(x, "atlas")
}
mcfreund/mfutils documentation built on Feb. 6, 2022, 4:57 a.m.