list utility nodes, providing tools for manipulating and analyzing lists.
Returns True if any element of the list is equal the input value.
Add an element to the end of a list.
Counts the number of occurrences of an element in a list.
Extends a list with another list.
Gets the length of a list.
Get the maximum value of a list of numbers.
Gets the minimum value of a list of numbers.
Removes all occurences of a value from a list. Value can be of any type.
Reverses a list.
Slices a list.
Sorts a list.
Gets the sum of a list of numbers.
Create a list from multiple elements of any type. The order of the list items is the same as the order of the inputs.
Gets an item from a list given its index. The item can be of any type.
Calculates the average of a list of numbers.