Check if a list includes an item, and return a boolean condition
Inputs
Name | Abbreviation | Type | Access | Description |
List | L | Any | List | The list to check |
Value | V | Any | Item | The value to check for |
Outputs
Name | Abbreviation | Type | Access | Description |
Result | R | Boolean | Item | Whether the list includes the value |
How to
Feed in a list
Feed in a value to find
This value is an item to be found - ie an object
The result is a true/false boolean.
It will be True if the item is found in the list, and false if the item is not found in the list

