> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# XNOR

> Return true when an even number of inputs are true.

| Input      | Type               | Required | Description         |
| ---------- | ------------------ | -------- | ------------------- |
| **Values** | Repeatable Boolean | No       | Values to evaluate. |

| Output     | Type    | Description                                   |
| ---------- | ------- | --------------------------------------------- |
| **Result** | Boolean | `true` when the count of true values is even. |

`[true, true, false]` returns `true`; `[true, false, false]` returns `false`.
With no values, the true count is zero, so the result is `true`.
