RubyGems Navigation menu

array_groups 0.0.10

[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.

Gemfile:
=

安裝:
=

版本列表:

  1. 0.0.10 May 03, 2019 (4.5 KB)
  2. 0.0.9 April 13, 2019 (4.5 KB)
  3. 0.0.8 April 12, 2019 (4.5 KB)
  4. 0.0.7 April 12, 2019 (4.5 KB)
  5. 0.0.6 April 12, 2019 (4.5 KB)
顯示所有版本(共 10)

擁有者:

作者:

  • Benjamin Zagorski

SHA 256 總和檢查碼:

=

總下載次數 26,194

這個版本 3,093

版本发布:

授權:

Ruby 版本需求: >= 0

相關連結: