Skip to contents

The negation of the value matching operator

Usage

x %ni% table

Arguments

x

The values to be matched

table

The values to not be matched against

Value

A logical vector, negation of the %in% operator.

Examples

if (FALSE) { # \dontrun{
1:5 %ni% c(1,3,5)
} # }