Array Node Catalog
Generated category
Array Node Catalog
Generated from 24 catalog nodes in Utils/Array.
Nodes in this category
Showing 24 of 24 generated node docs.
Array Length
Utils/ArrayGets the length of an array
Clear Array
Utils/ArrayRemoves all elements from an array
Construct Array
Utils/ArrayCreates an array from individual elements. Add more input pins by connecting to the 'element' pins.
Extend
Utils/ArrayAppend an Array to another Array
Filter Array Field
Utils/ArrayRemoves 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/ArrayRemoves 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/ArrayFinds the index of an item in an array
Get Element
Utils/ArrayGets an element from an array by index
Includes
Utils/ArrayChecks if an array includes a certain value
Make Array
Utils/ArrayCreates an empty array
Pop
Utils/ArrayRemoves and returns the last element of an array
Push
Utils/ArrayPush an item into your Array
Remove Index
Utils/ArrayRemoves an element from an array at a specific index
Set Index
Utils/ArraySets an element at a specific index in an array
Shuffle
Utils/ArrayShuffle Array Items
Batch Push
Utils/Array/BatchPush multiple items into an array in one operation. More efficient than multiple single pushes.
Batch Remove
Utils/Array/BatchRemove 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/BatchSet multiple elements at specific indices in one operation. More efficient than multiple single sets.
Clear (By Ref)
Utils/Array/By ReferenceClear all elements directly from a variable array without copying.
Extend (By Ref)
Utils/Array/By ReferenceAppend multiple items directly to a variable array without copying. Much faster for large arrays.
Pop (By Ref)
Utils/Array/By ReferenceRemove and return the last element directly from a variable array without copying. Much faster for large arrays.
Push (By Ref)
Utils/Array/By ReferencePush an item directly into a variable array without copying. Much faster for large arrays.
Remove Index (By Ref)
Utils/Array/By ReferenceRemove 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 ReferenceSet an element at a specific index directly in a variable array without copying. Much faster for large arrays.