Check whether values in a vector are in or not in another vector.
Built using data.table::'%chin%'
and vctrs::vec_in()
for performance.
x %in% y
x %notin% y
A vector of values to check if they exist in y
A vector of values to check if x values exist in
Falls back to base::'%in%'
when x and y don't share a common type.
This means that the behaviour of base::'%in%'
is preserved (e.g. "1" %in% c(1, 2)
is TRUE
)
but loses the speedup provided by vctrs::vec_in()
.