R/predicates.R
is_non_null.Rd
Check if all values are not NA
is_non_null(x)
A vector
TRUE if the vector has no NA values
is_non_null(1:5) # TRUE #> [1] TRUE is_non_null(c(1, NA, 3)) # FALSE #> [1] FALSE