R/is_cifti.R

Defines functions is.cifti

Documented in is.cifti

#' @title Test if CIFTI
#' @description Simple wrapper to determine if class is CIFTI
#'
#' @param x object to test
#'
#' @return Logical if \code{x} is CIFTI
#' @export
is.cifti = function(x) {
  inherits(x, "cifti")
}
muschellij2/cifti documentation built on Aug. 12, 2020, 4:06 a.m.