> ## 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.

# XOR

> Return true when an odd 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 odd. |

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