可枚舉的each_slice()是Ruby中的內置方法,它對N個元素的每個範圍進行迭代並打印出來。如果沒有給出塊,則返回枚舉數。
用法: enu.each_slice(N) { |obj| block }
參數:該函數獲取用於檢查條件的塊,N指定用於在單個切片中獲取的元素數。
返回值:返回N個切片中的元素。
例子1:
# Ruby program for each_slice method in Enumerable
# Initialize
enu = (1.. 5)
# returns slice
enu.each_slice(2){|obj| p obj}
輸出:
[1, 2] [3, 4] [5]
例子2:
# Ruby program for each_slice method in Enumerable
# Initialize
enu = (1..10)
# returns each element
enu.each_slice(4)
輸出:
Enumerator: 1..10:each_slice(4)
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_index()用法及代碼示例
- Ruby Enumerable grep_v()用法及代碼示例
- Ruby Enumerable sort()用法及代碼示例
- Ruby Enumerable reverse_each()用法及代碼示例
- Ruby Enumerable grep()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable each_slice() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。