nor()
nor<
A>(a): <B>(b) =>boolean
Logical Non-disjunction !(a || b).
Type Parameters
A
A
The type of the first input value.
Parameters
a
A
The first value to compare.
Returns
<
B>(b):boolean
Type Parameters
B
B
Parameters
b
B
Returns
boolean
See
https://en.wikipedia.org/wiki/Logical_NOR
Remarks
pure function
Example
nor(true)(0);
// false