isnot_in.Rd
Return TRUE if x is not contained in y, the opposite of %in%.
isnot_in(x, y)
A vector
A boolean vector with the return from the condition check.
isnot_in("a", letters) #> [1] FALSE isnot_in("1", letters) #> [1] TRUE