Nor
Nor(arg1, arg2, ...)
Logical NOR function. It evaluates its arguments in order, giving
False
immediately if any of them areTrue
, andTrue
if they are allFalse
.
See
Examples
>> Nor(False, False, False)True
>> Nor(False, True, a)False
Implementation status
- ✅ - full supported