The Flatten node is used to return a single, ordered list of all elements within an array.
For example, applying Flatten to:
[[a, b, c, d], [e, f, g, h], [i, j, k, l]]
Returns:
[a, b, c, d, e, f, g, h, i, j, k, l]
The Flatten node is used to return a single, ordered list of all elements within an array.
For example, applying Flatten to:
[[a, b, c, d], [e, f, g, h], [i, j, k, l]]
Returns:
[a, b, c, d, e, f, g, h, i, j, k, l]