R/helpers.R
not.na.Rd
Given a vector, returns TRUE for all entities that aren't NA.
not.na(x)
A vector to check for NAs against.
A vector of elements that aren't NA
not.na(c(1, NA, 2, NA)) #> [1] TRUE FALSE TRUE FALSE