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

# NOR

> Return true only when every input is false.

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

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

The result is `false` as soon as any input is `true`. With no values, the
result is `true`.
