We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
map{}.sum → sum{} — Use sum with a block instead of map + sum to avoid creating an intermediate array.
sum
map
ary.map { |x| x * 2 }.sum
ary.sum { |x| x * 2 }
There was an error while loading. Please reload this page.