Skip to main content

22 docs tagged with "Core"

View All Tags

List Add

Adds a new element to the end of the target list containing the input value.

List Add If Not Contains

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.

List Contains

Outputs True if the target list contains the input value.

List Copy

Returns a shallow clone of the given list.

List Create

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.

List Distinct

Outputs a copy of the input list containing only its unique elements.

List Except

Get a list of all elements that appear in the first list but not in the other lists.

List Get All Indices Of

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.

List Get Element

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.

List Get First Index Of

Returns first index of the item in target list if that list contains it. Otherwise returns -1.

List Insert

Insert a new element into the target list at the input index. The new element contains the input value.

List Intersect

Get a list of the elements that appear in every input list.

List Remove At

Remove an element in the target list at the input index.

List Shuffle

Randomize the order of the values in the given list.

List Sort

Sorts the given list in place in either ascending or descending order.

List Union

Combine lists together into one list and remove any duplicate elements.