R/isnullorempty.R

Defines functions isnullorempty

Documented in isnullorempty

isnullorempty <- function(X) {
    return(is.null(X) || length(X) == 0)
}

Try the UNCLES package in your browser

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

UNCLES documentation built on May 2, 2019, 11:11 a.m.