Back to Aurora Vision Studio website

You are here: Start » Filter Reference » Array » Array Composition » JoinArrays

JoinArrays


Module: FoundationLite

Concatenates the input arrays one after another.

Name Type Description
Input value inArray1 <T>Array First array to be joined
Input value inArray2 <T>Array Second array to be joined
Input value inArray3 <T>Array Third array to be joined
Input value inArray4 <T>Array Fourth array to be joined
Output value outJoinedArray <T>Array Joined array

The type of this filter is defined using the type variable T which represents any valid type. Read more.

Hints

  • If you need more than four input arrays, use a sequence of several instances of this filter.

Examples

Description of usage of this filter can be found in examples and tutorial: Rubber Ring.
inArray1 = {2,0,2}
inArray2 = {4,5}
outArray = {2,0,2,4,5}

Complexity Level

This filter is available on Basic Complexity Level.

See Also

  • FlattenArray – Receives an array of arrays, and creates a single one-dimensional array containing all individual elements.
  • AppendToArray – Inserts a new element at the end of an array.
  • CreateArray – Creates an array from up to 8 individual objects.
  • InsertToArray – Inserts a new element to an array at a specified location.