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


Ruby Enumerator.each用法及代码示例


本文简要介绍ruby语言中 Enumerator.each 的用法。

用法

each { |elm| block } → obj
each → enum
each(*appending_args) { |elm| block } → obj
each(*appending_args) → an_enumerator

根据 Enumerator 的构造方式迭代块。如果没有给出块和参数,则返回 self。

例子

"Hello, world!".scan(/\w+/)                     #=> ["Hello", "world"]
"Hello, world!".to_enum(:scan, /\w+/).to_a      #=> ["Hello", "world"]
"Hello, world!".to_enum(:scan).each(/\w+/).to_a #=> ["Hello", "world"]

obj = Object.new

def obj.each_arg(a, b=:b, *rest)
  yield a
  yield b
  yield rest
  :method_returned
end

enum = obj.to_enum :each_arg, :a, :x

enum.each.to_a                  #=> [:a, :x, []]
enum.each.equal?(enum)          #=> true
enum.each { |elm| elm }         #=> :method_returned

enum.each(:y, :z).to_a          #=> [:a, :x, [:y, :z]]
enum.each(:y, :z).equal?(enum)  #=> false
enum.each(:y, :z) { |elm| elm } #=> :method_returned

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Enumerator.each。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。