R/is.afmdata.R

Defines functions is.afmdata

Documented in is.afmdata

#' @title Afmdata check.
#'   
#' @description Checks wether an R object is an afmdata or not.
#' @usage is.afmdata(x)
#' @param x Any \bold{R} object.
#' @return Returns \code{TRUE} if its argument is an afmdata (that is, has "afmdata" 
#'   amongst its classes) and \code{FALSE} otherwise.
#'   
#' @export


is.afmdata <- function(x){
  inherits(x,"afmdata")
}

Try the afmToolkit package in your browser

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

afmToolkit documentation built on May 1, 2019, 9:20 p.m.