Data / Lists
7 nodes in this category.
List Create
data/list_create
Creates a new empty list.
Out: list
List Add
data/list_add
Adds a value to a list and returns the modified list.
In: exec, list, value
Out: exec, list
List Get
data/list_get
Returns the element at a given index in a list.
In: list, index
Out: value
List Size
data/list_size
Returns the number of elements in a list.
In: list
Out: size
List Remove
data/list_remove
Removes an element from a list by index or by value.
In: list, indexValue
Out: list, removed
List Contains
data/list_contains
Checks whether a list contains a specific value.
In: list, value
Out: contains, index
List Reverse / Sort
data/list_reverse
Reverses, shuffles, or sorts a list.
In: list
Out: list