Concat Array

Click to copy

Concatenates two arrays of the same type.


Example: Concat Array(A: [1, 2], B: [3, 4]) = [1, 2, 3, 4].

Flow Connections

  • [Input] In - starts the block's execution.
  • [Output] Out - activates when the block has finished its execution.

Data Connections

  • [Input] A (array, any type) - 1st array to concatenate.
  • [Input] B (array, same type as "A") - 2nd array to concatenate.
  • [Output] Result (array, same type as "A") - result of the operation.