Skip to contents

Return TRUE if x is not contained in y, the opposite of %in%.

Usage

isnot_in(x, y)

Arguments

x

A vector

y

A vector

Value

A boolean vector with the return from the condition check.

Examples


isnot_in("a", letters)
#> [1] FALSE

isnot_in("1", letters)
#> [1] TRUE