R/zzz.R
grapes-ni-grapes.Rd
Negation of %in%. Returns TRUE for elements of x that are not in table.
%in%
TRUE
x
table
x %ni% table
Vector of values to check.
Vector of values to match against.
Logical vector.
c(1, 2, 3) %ni% c(2, 4) #> [1] TRUE FALSE TRUE # [1] TRUE FALSE TRUE