Binary operator, inverse to %in%.
Arguments
- lhs
<vector or NULL>: values to be compared against rhs
- rhs
<vector or NULL>: values to be compared against lhs
Examples
"A" |> NotIn(c("A","B","C"))
#> [1] FALSE
"A" |> NotIn(c("B","C","D"))
#> [1] TRUE
NotIn("A", c("A","B","C"))
#> [1] FALSE
NotIn("A", c("B","C","D"))
#> [1] TRUE