可枚举的group_by()是Ruby中的一个内置方法,返回一个散列,其中将这些组分组后,将这些组作为块的结果集中保存。如果没有给出块,则返回一个枚举数。
用法: enu.group_by { |obj| block }
参数:该函数根据完成分组的需要选择一个块。
返回值:返回哈希值。
例子1:
# Ruby program for group_by method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.group_by { |obj| obj % 4 == 1 }
输出:
{true=>[1, 5, 9], false=>[2, 3, 4, 6, 7, 8, 10]}
范例#2:
# Ruby program for group_by method in Enumerable
# Initialize
enu = [2, 8, 9, 10, 23]
# Prints
enu.group_by { |obj| obj % 6 }
输出:
{2=>[2, 8], 3=>[9], 4=>[10], 5=>[23]}
相关用法
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable reject()用法及代码示例
- Ruby Enumerable to_a()用法及代码示例
- Ruby Enumerable take_while()用法及代码示例
- Ruby Enumerable collect()用法及代码示例
- Ruby Enumerable find()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable group_by() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。