Skip to content

Nor

Nor(arg1, arg2, ...)

Logical NOR function. It evaluates its arguments in order, giving False immediately if any of them are True, and True if they are all False.

See

Examples

>> Nor(False, False, False)
True
>> Nor(False, True, a)
False

Implementation status

  • ✅ - full supported

Github