not_undefined {maybe} | R Documentation |
Check if an object is not undefined
Description
In this case 'undefined' values include NULL
, NaN
, all NA
variants,
and infinite values.
Usage
not_undefined(a)
Arguments
a |
Object to check |
Value
TRUE
or FALSE
Examples
not_undefined(NA)
not_undefined(NULL)
not_undefined(1)
[Package maybe version 1.1.0 Index]