Binary operator which returns a logical vector indicating
if there is not a match for x
in y
.
Examples
c(1, 2, 3,'a','b','c') %!in% letters
#> Error in c(1, 2, 3, "a", "b", "c") %!in% letters: could not find function "%!in%"
## TRUE TRUE TRUE FALSE FALSE FALSE