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