is_empty.Rd
Is NULL, NA, "" or 0 length
is_empty(x)
object to be tested
TRUE if object is NULL, NA, "" or length 0; logical vector for objects of length > 1
is_empty(c(NA, "a", "")) #> [1] TRUE FALSE TRUEis_empty(NULL) #> [1] TRUEis_empty(character()) #> [1] TRUE