るりまサーチ

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

別のキーワード

  1. prime next
  2. _builtin next
  3. date next_day
  4. date next_year
  5. date next_month

ライブラリ

クラス

検索結果

Enumerator#next_values -> Array (18150.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...