R/isDefined.R

Defines functions isDefined

Documented in isDefined

#' is.defined
#'
#' Internal function that tests if a variable is defined (i.e. is not NULL).
#' @param x The variable or object you want to test the existence of.

isDefined <- function(x) !is.null(x)
hferg/bayestraitr documentation built on May 28, 2019, 8:55 p.m.