not.nullR Documentation

Not NULL

Description

Check if entry is not NULL

Usage

not.null(x)

Arguments

x

vector entry

Value

a boolean value to indicate if entry is NULL

Examples

not.null("") # TRUE
not.null(NULL) # FALSE
if(not.null(45)) message("something") # yes