R/is.R

Defines functions is.mads is.passive is.mitml.result is.mipo is.mira is.mids

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




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



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


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



is.passive <- function(string) {
    return("~" == substring(string, 1, 1))
}


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

Try the mudfold package in your browser

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

mudfold documentation built on Nov. 24, 2022, 5:09 p.m.