Actions
Feature #7006
closedAdd Enumerable#grouped_in as a each_slice without the block
Description
I'd like to transform [1, 2, 3, 4] into [[1, 2], [3, 4]].
Currently I can use something like:
a = []; [1, 2, 3, 4].each_slice(2){|chunk| a << chunk}
But I'd prefer to write just:
a = [1, 2, 3, 4].grouped_in(2)
Or any other method name you would choose, like "slices" or something else.
Actions
Like0
Like0Like0Like0Like0Like0