are_null {greta} | R Documentation |
Vectorised is.null
Description
Vectorised is.null
Usage
are_null(x)
Arguments
x |
list of things that may contain NULL values |
Value
logical
Examples
is.null(list(NULL, NULL, 1))
are_null(list(NULL, NULL, 1))
are_null(list(NULL, NULL, NULL))
are_null(list(1, 2, 3))
is.null(list(1, 2, 3))
[Package greta version 0.5.0 Index]