當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Enumerable.each_cons用法及代碼示例


本文簡要介紹ruby語言中 Enumerable.each_cons 的用法。

用法

each_cons(n) { ... } → self
each_cons(n) → enumerator

使用每個連續重疊的n - 元素元組調用塊;返回 self

a = []
(1..5).each_cons(3) {|element| a.push(element) }
a # => [[1, 2, 3], [2, 3, 4], [3, 4, 5]]

a = []
h = {foo: 0,  bar: 1, baz: 2, bam: 3}
h.each_cons(2) {|element| a.push(element) }
a # => [[[:foo, 0], [:bar, 1]], [[:bar, 1], [:baz, 2]], [[:baz, 2], [:bam, 3]]]

如果沒有給出塊,則返回 Enumerator

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Enumerable.each_cons。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。