Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Enumeratorクラス > each
each {...} -> object
[permalink][rdoc]each -> self
each(*args) {...} -> object
each(*args) -> Enumerator
生成時のパラメータに従ってブロックを繰り返します。 *args を渡した場合は、生成時のパラメータ内引数末尾へ *args を追加した状態で繰り返します。 ブロック付きで呼び出された場合は、 生成時に指定したイテレータの戻り値をそのまま返します。
例1:
str = "Yet Another Ruby Hacker" enum = Enumerator.new(str, :scan, /\w+/) enum.each {|word| p word } # => "Yet" # "Another" # "Ruby" # "Hacker" str.scan(/\w+/) {|word| p word } # => "Yet" # "Another" # "Ruby" # "Hacker"
例2:
"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