isSomeNull: Checks whether some object is NULL

View source: R/0helpers.R

isSomeNullR Documentation

Checks whether some object is NULL

Description

Checks whether some object is NULL

Usage

isSomeNull(...)

Arguments

...

objects that need testing

Value

Returns TRUE if there's some object that's a NULL, FALSE when all objects are not NULL

Examples

x <- 1
y <- "a"
z <- NULL

isSomeNull(x, y)
isSomeNull(x, y, z)

AlexanderLyNL/bstats documentation built on Sept. 11, 2023, 4:10 p.m.