List Add
Adds a new element to the end of the target list containing the input value.
Adds a new element to the end of the target list containing the input value.
Adds a new element to the end of the target list containing the input value, but only if the element isn't already in the list.
Removes all elements from a list
Combine lists together into one list.
Outputs True if the target list contains the input value.
Returns a shallow clone of the given list.
Creates a list from input values. Add more inputs by using the configure tool on the node and press "Add Input". All items in a list must be of the same type.
Outputs a copy of the input list containing only its unique elements.
Get a list of all elements that appear in the first list but not in the other lists.
Returns list of all indices of input item in target list if that list contains one or more instances of the item. Otherwise returns an empty list.
Outputs the number of elements inside the input list.
Gets a specified element from the input list. The "Index" is the location of the element in the list. The first element in the list is at index 0, the second element is at index 1.
Returns first index of the item in target list if that list contains it. Otherwise returns -1.
Insert a new element into the target list at the input index. The new element contains the input value.
Get a list of the elements that appear in every input list.
Remove an element in the target list at the input index.
Removes all instances of item from list.
Removes the last element in a list.
Sets a value at a location in a list.
Randomize the order of the values in the given list.
Sorts the given list in place in either ascending or descending order.
Combine lists together into one list and remove any duplicate elements.