NOT
Flip a logical value to its opposite (e.g. 1->0, False->True)
Example Usage
NOT(IS__SET(value)) // if value is set, return 0; if value is not set, return 1
Overview
Function signature
NOT(value)
Category
Logical
Return data type
bool
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | bool | The value to flip to its opposite |