nor
boolean →
nor(
expression: boolean
) → boolean
Returns the negation of the logical disjunction of the Boolean input and a secondary Boolean expression. Evaluates the secondary expression only when the input is false.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
expression | boolean | Yes | Specifies the secondary Boolean expression evaluated when the input is false. |
Argument evaluation
expression: Evaluated only when the incoming value converts to false. References use their enclosing context; open predicate expressions use the current evaluation value.
Examples
#false | nor(#false) → #true
Kind: Predicate
Scope: boolean
Aliases: None