, == %in% NA - , "%in%"...
x <- c("A",NA,"A")
x=="A"
x[x=="A"]
x %in% "A"
x[ x %in% "A" ]
, ( )...
%in% match,
"%in%" <- function(x, table) match(x, table, nomatch = 0) > 0
match, , , ==
"%in2%" <- function(x,table) match(x, table, nomatch = NA_integer_) > 0
x %in2% "A"