Is there an ideomatic way to take a `LongProgressi...
# announcements
d
Is there an ideomatic way to take a
LongProgression
such as
(0L..500L step 50L)
and turn it into a list of
[0L..49L,50L..99L....]
?
map { }
only has the current value, but can't "peek" to the next one to make the current range...