Splitter
Last updated
Last updated
[data/array/Splitter]
Create 2D array from 1D array. Example:
[1,2,3]@0 recieved via array`
2@0 recieved via count
[[1,2],[3]]@0 sent via array
Keywords: unflattener
array: any
Receives array to be splitted. Example: [1,2,3,2]
count: any
Receives the size of the columns of the 2D array. Example: 2
2D array: any
Sends the created 2D array. Example: [[1,2],[3,4]]