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

# List Contains

> Check whether a list contains a value.

## Inputs

| Input     | Type | Required | Description                           |
| --------- | ---- | -------- | ------------------------------------- |
| **List**  | List | No       | The list to search. Defaults to `[]`. |
| **Value** | Any  | No       | The value to find.                    |

## Output

| Output     | Type    | Description                               |
| ---------- | ------- | ----------------------------------------- |
| **Result** | Boolean | `true` when the value occurs in the list. |

The comparison is exact. Objects and lists match only when they are the same
runtime value; two separate objects with identical properties do not match.
