Skip to contents

Binary operator, inverse to %in%.

Usage

NotIn(lhs, rhs)

Arguments

lhs

<vector or NULL>: values to be compared against rhs

rhs

<vector or NULL>: values to be compared against lhs

Value

A boolean.

Details

NotIn

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