pairwiseNotEqual
ts
const pairwiseNotEqual: OperatorFn;Defined in: operations.ts:268
Checks if each argument is not equal to the next.
Remarks
Evaluated sequentially: a !== b !== c is evaluated as (a !== b) && (b !== c)
Param
Primitive arguments
Returns
true if all comparisons are satisfied, otherwise false
Since
1.0.0
Author
Simon Kovtyk