Establish whether particular values exist in a vector.
Source:R/utils-misc.R
grapes-notin-grapes.Rd
This is the negation of the %in%
operator.
Value
A logical vector, indicating if a match was not located for each element of x (i.e., the values are TRUE or FALSE).
Examples
"a" %notin% c("b", "c")
#> [1] TRUE