R/predicates.R
not_undefined.Rd
In this case 'undefined' values include NULL, NaN, all NA variants, and infinite values.
NULL
NaN
NA
not_undefined(a)
Object to check
TRUE or FALSE
TRUE
FALSE
not_undefined(NA) #> [1] FALSE not_undefined(NULL) #> [1] FALSE not_undefined(1) #> [1] TRUE