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

# NAND

> Return false only when every input is true.

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

| Output     | Type    | Description                                    |
| ---------- | ------- | ---------------------------------------------- |
| **Result** | Boolean | The inverse of applying **And** to the values. |

For `[true, true]`, the result is `false`. If at least one value is `false`,
the result is `true`. With no values, the result is `false`.
