collect! {|item| ..} -> self
[permalink][rdoc][edit]map! {|item| ..} -> self
collect! -> Enumerator
map! -> Enumerator
-
各要素を順番にブロックに渡して評価し、その結果で要素を置き換えます。
ブロックが与えられなかった場合は、自身と map! から生成した Enumerator オブジェクトを返します。
ary = [1, 2, 3] ary.map! {|i| i * 3 } p ary #=> [3, 6, 9] ary = [1, 2, 3] e = ary.map! e.each{ 1 } p ary #=> [1, 1, 1]
[SEE_ALSO] Array#collect, Enumerator