Check if entry is not NULL
not.null(x)
x
vector entry
a boolean value to indicate if entry is NULL
not.null("") # TRUE not.null(NULL) # FALSE if(not.null(45)) message("something") # yes