notEqual
ts
const notEqual: OperatorFn;Defined in: operations.ts:289
Checks if all arguments are mutually different.
Remarks
Each argument is compared with every other argument: a !== b && a !== c && b !== c
Param
Primitive arguments
Returns
true if all arguments are pairwise distinct, otherwise false
Since
1.0.0
Author
David Schummer