%out%
is an inverted version of the infix %in%
operator.
x %out% table
logical; if x
is not present in table
%out%
is currently defined as
"%out%" <- function(x, table) match(x, table, nomatch = 0) == 0
c("A", "B", "3") %out% LETTERS
#> [1] FALSE FALSE TRUE