Nand
Nand(arg1, arg2, ...)
Logical NAND function. It evaluates its arguments in order, giving
True
immediately if any of them areFalse
, andFalse
if they are allTrue
.
See
Examples
>> Nand(True, True, True)False
>> Nand(True, False, a)True
Implementation status
- ✅ - full supported