るりまサーチ

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

別のキーワード

  1. _builtin end
  2. ripper end_seen?
  3. _builtin exclude_end?
  4. _builtin end_with?
  5. zlib end

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < ... 5 6 7 >>

Enumerator#next_values -> Array (13.0)

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

...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 next_values next
# yield []...
<< < ... 5 6 7 >>