Skip to contents

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)
#> [1] FALSE
not_undefined(NULL)
#> [1] FALSE
not_undefined(1)
#> [1] TRUE