るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.026秒)

別のキーワード

  1. rake empty_task_args
  2. rake resolve_args
  3. command extra_args
  4. parseerror args
  5. optparse args

ライブラリ

クラス

検索結果

Enumerator#next_values -> Array (18251.0)

「次」のオブジェクトを配列で返します。

...xt と next_values の違いを][ruby]{
o = Object.new
def o.each
yield
yield 1
yield 1, 2
yield nil
yield [1, 2]
end
e = o.to_enum
p e.next_values
p e.next_values
p e.next_values
p e.next_values
p e.next_values
e = o.to_enum
p e.next
p e.next
p e.next
p e.next
p e.next

## yield args...