You have the `chunked` function, if that's what yo...
# getting-started
m
You have the
chunked
function, if that's what you need.
Copy code
sequenceOf(1, 2, 3, 4, 5, 6, 7).chunked(3).forEach { println(it) }
will print
Copy code
[1,2,3]
[4,5,6]
[7]
👍 1