可枚舉的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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。