当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。