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")
}

Try the cifti package in your browser

Any scripts or data that you put into this service are public.

cifti documentation built on May 2, 2019, 9:13 a.m.