It there a convenient way to split a list of items...
# announcements
e
It there a convenient way to split a list of items into many smaller list of n items? e.g. a list of 100 items into 5 list of 20 items
g
Only in Kotlin 1.2. You can use chunked(n)
e
So no easy way in 1.1 then?
e
Thanks man