るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.047秒)
トップページ > クエリ:ruby[x] > クエリ:string[x] > クラス:Enumerator[x]

別のキーワード

  1. rbconfig ruby
  2. fiddle ruby_free
  3. fiddle build_ruby_platform
  4. rake ruby
  5. rubygems/defaults ruby_engine

ライブラリ

検索結果

Enumerator#with_object(obj) -> Enumerator (31.0)

繰り返しの各要素に obj を添えてブロックを繰り返し、obj を返り値として返します。

...bj を返す Enumerator を返します。

//emlist[例][ruby]{
# 0,1,2 と呼びだす enumeratorを作る
to_three = Enumerator.new do |y|
3.times do |x|
y << x
end
end

to_three_with_string = to_three.with_object("foo")
to_three_with_string.each do |x,string|
puts "#{string}: #{x}"
end...

Enumerator#with_object(obj) {|(*args), memo_obj| ... } -> object (31.0)

繰り返しの各要素に obj を添えてブロックを繰り返し、obj を返り値として返します。

...bj を返す Enumerator を返します。

//emlist[例][ruby]{
# 0,1,2 と呼びだす enumeratorを作る
to_three = Enumerator.new do |y|
3.times do |x|
y << x
end
end

to_three_with_string = to_three.with_object("foo")
to_three_with_string.each do |x,string|
puts "#{string}: #{x}"
end...