xnor
boolean →
xnor(
expression: boolean
) → boolean
Returns the negation of the exclusive disjunction of the Boolean input and a secondary Boolean expression. Always evaluates the secondary expression after the input.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
expression | boolean | Yes | Specifies the secondary Boolean expression evaluated after the input. |
Argument evaluation
expression: Evaluated after converting the incoming value. References use their enclosing context; open predicate expressions use the current evaluation value.
Examples
#true | xnor(#true) → #true
Kind: Predicate
Scope: boolean
Aliases: None