Concatenator

[data/array/Concatenator]


Concatenates two arrays. Example:

  1. [1,2]@0 recieved via a

  2. [3,4]@0 recieved via b

  3. [1,2,3,4]@0 sent via concatenated

More: https://github.com/Cranq-io/cranq-tutorials/blob/main/reference/2_constructing_data/2_4_merge_concat/README.md#example---concatenating-arrays


Keywords: append, join, prepend

Input ports

  • a: any[]

    Receives array a to concatenate. Example: [1,2]

  • b: any[]

    Receives array b to concatenate. Example: [3,4]

Output ports

  • concatenated: (any[] or any[])

    Sends the concatenated array. Example: [1,2,3,4]

Last updated