Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Enumerator::Lazyクラス > collect
map {|item| ... } -> Enumerator::Lazy
[permalink][rdoc]collect {|item| ... } -> Enumerator::Lazy
Enumerable#map と同じですが、配列ではなくEnumerator::Lazy を返します。
例:
1.step.lazy.map{ |n| n % 3 == 0 } # => #<Enumerator::Lazy: #<Enumerator::Lazy: #<Enumerator: 1:step>>:map> 1.step.lazy.collect{ |n| n.succ }.take(10).force # => [2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
[SEE_ALSO] Enumerable#map