[1,2,3,4,5].in_groups(2) => [ [1,2,3], [4,5] ] ------------------------------------------------------- [1,2,3,4,5].in_groups_of(2) => [ [1,2], [3,4], [5] ] ------------------------------------------------------- [1,2,3,4,5].in_groups_of(2, nil_fill: true) => [ [1,2], [3,4], [5,nil] ] ------------------------------------------------------- This allows the grouping of an array into different "groups". Great for threading long arrays by group or making them rectangular.
Required Ruby Version
>= 0
Authors
Benjamin Zagorski
Versions
- 0.0.10 May 03, 2019 (4.5 KB)
- 0.0.9 April 13, 2019 (4.5 KB)
- 0.0.8 April 12, 2019 (4.5 KB)
- 0.0.7 April 12, 2019 (4.5 KB)
- 0.0.6 April 12, 2019 (4.5 KB)