R/not-in.R
grapes-notin-grapes.Rd
The opposite of %in%.
%in%
lhs %notin% rhs
A vector.
A logical vector with the same length as lhs.
lhs
a <- c(1, 2, 3) b <- c(1, 2) # logical vector a %notin% b #> [1] FALSE FALSE TRUE # equivalent to !(a %in% b) #> [1] FALSE FALSE TRUE