Skip to content

Array Node Catalog

Generated category

Array Node Catalog

Generated from 24 catalog nodes in Utils/Array.

Utils/Array/BatchUtils/Array/By Reference

Nodes in this category

Showing 24 of 24 generated node docs.

Array Length

Utils/Array

Gets the length of an array

Clear Array

Utils/Array

Removes all elements from an array

Construct Array

Utils/Array

Creates an array from individual elements. Add more input pins by connecting to the 'element' pins.

Extend

Utils/Array

Append an Array to another Array

Filter Array Field

Utils/Array

Removes a specific field from every struct in an array. Elements without the field are kept unchanged. Returns the filtered array and count of removed fields.

Filter Array Fields

Utils/Array

Removes multiple fields from every struct in an array. Elements without the fields are kept unchanged. Returns the filtered array and count of removed fields.

Find Item

Utils/Array

Finds the index of an item in an array

Get Element

Utils/Array

Gets an element from an array by index

Includes

Utils/Array

Checks if an array includes a certain value

Make Array

Utils/Array

Creates an empty array

Pop

Utils/Array

Removes and returns the last element of an array

Push

Utils/Array

Push an item into your Array

Remove Index

Utils/Array

Removes an element from an array at a specific index

Set Index

Utils/Array

Sets an element at a specific index in an array

Shuffle

Utils/Array

Shuffle Array Items

Batch Push

Utils/Array/Batch

Push multiple items into an array in one operation. More efficient than multiple single pushes.

Batch Remove

Utils/Array/Batch

Remove multiple elements at specific indices in one operation. More efficient than multiple single removes. Indices are processed in descending order to maintain correctness.

Batch Set

Utils/Array/Batch

Set multiple elements at specific indices in one operation. More efficient than multiple single sets.

Clear (By Ref)

Utils/Array/By Reference

Clear all elements directly from a variable array without copying.

Extend (By Ref)

Utils/Array/By Reference

Append multiple items directly to a variable array without copying. Much faster for large arrays.

Pop (By Ref)

Utils/Array/By Reference

Remove and return the last element directly from a variable array without copying. Much faster for large arrays.

Push (By Ref)

Utils/Array/By Reference

Push an item directly into a variable array without copying. Much faster for large arrays.

Remove Index (By Ref)

Utils/Array/By Reference

Remove an element at a specific index directly from a variable array without copying. Much faster for large arrays.

Set Index (By Ref)

Utils/Array/By Reference

Set an element at a specific index directly in a variable array without copying. Much faster for large arrays.