要約
複数の繰り返し可能なオブジェクトを1つの Enumerator として扱うためのクラス。
Enumerator::Chain のオブジェクトは、Enumerable#chain や Enumerator#+ から作られます。
目次
継承しているメソッド
- Enumeratorから継承しているメソッド
- Enumerableから継承しているメソッド
-
- all?
- any?
- chain
- chunk
- chunk_while
- collect
- collect_concat
- count
- cycle
- detect
- drop
- drop_while
- each_cons
- each_entry
- each_slice
- each_with_index
- each_with_object
- entries
- filter
- filter_map
- find
- find_all
- find_index
- first
- flat_map
- grep
- grep_v
- group_by
- include?
- inject
- lazy
- map
- max
- max_by
- member?
- min
- min_by
- minmax
- minmax_by
- none?
- one?
- partition
- reduce
- reject
- reverse_each
- select
- slice_after
- slice_before
- slice_when
- sort
- sort_by
- sum
- take
- take_while
- tally
- to_a
- to_h
- uniq
- zip
特異メソッド
new(*enums) -> Enumerator::Chain
[permalink][rdoc][edit]-
複数の Enumerable から、1つの新しい Enumerator を作って返します。
e = Enumerator::Chain.new(1..3, [4, 5]) e.to_a #=> [1, 2, 3, 4, 5] e.size #=> 5
インスタンスメソッド
each(*args) { |*args| ...} -> object
[permalink][rdoc][edit]each(*args) -> Enumerator
-
まず最初の繰り返し可能なオブジェクトの each メソッドを args 引数とともに呼び出した後、続く繰り返し可能なオブジェクトも同様に呼び出します。
ブロックが渡されない場合は Enumerator を返します。
inspect -> String
[permalink][rdoc][edit]-
self を人間が読みやすい形式で文字列として返します。
rewind -> object
[permalink][rdoc][edit]-
列挙状態を巻き戻します。
self が持つ繰り返し可能なオブジェクトに対して、逆順で rewind メソッドを呼びます。ただし rewind メソッドを持たないオブジェクトに対しては rewind メソッドを呼びません。
size -> Integer | Float::INFINITY | nil
[permalink][rdoc][edit]-
合計の要素数を返します。
それぞれの列挙可能なオブジェクトのサイズの合計値を返します。ただし、列挙可能なオブジェクトが1つでも nil か Float::INFINITY を返した場合、それを合計の要素数として返します。