map {|item| ... } -> Enumerator::Lazy
[permalink][rdoc][edit]collect {|item| ... } -> Enumerator::Lazy
-
Enumerable#map と同じですが、配列ではなくEnumerator::Lazy を返します。
- [EXCEPTION] ArgumentError:
- ブロックを指定しなかった場合に発生します。
例:
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