Determine if an element is not present inside of a set. In particular,
this function checks to see if x
is not in table
.
Arguments
- x
vector or
NULL
: the values to be matched. Long vectors are supported.- table
vector or
NULL
: the values to be matched against. Long vectors are not supported.
Value
A logical vector of TRUE
or FALSE
that indicates if a match was
not found for each element of x
.
Details
This operator is a modified version of the %in%
function.