Data / Lists
data/list_contains
List Contains
Checks whether a list contains a specific value.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
list |
list | The list to search. | |
value |
any | Value to look for. |
Outputs
| Name | Type | Description |
|---|---|---|
contains |
boolean | True if the value is found. |
index |
number | First index of the match, or -1 if not found. |