Test whether some data are not in a table.
x %!in% table
x
A vector of data.
table
A table of reference values.
This helps avoid code structures like !(x %in% table).
!(x %in% table)
match
1:2 %!in% 2:4