not.empty {quickcode} | R Documentation |
Not empty
Description
Check if entry is not empty
Usage
not.empty(x)
is.empty(x)
Arguments
x |
vector entry |
Value
a boolean value to indicate if entry is empty
Examples
not.empty("empty") # TRUE
not.empty('') # FALSE
not.empty(y<-NULL) # FALSE
if(not.empty('')) message("yes") # NULL
[Package quickcode version 0.9.1 Index]