Convenience function for is.null or is.na

is_not(x)

Arguments

x

Input

Examples

is_not(NA)
#> [1] TRUE
is_not(NULL)
#> [1] TRUE
is_not(c())
#> [1] TRUE
is_not(list())
#> [1] TRUE
is_not(data.frame())
#> [1] TRUE