Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/core_ext.rb
Instance Method Summary collapse
Instance Method Details
#sum ⇒ Object
3 4 5 6 7 |
# File 'lib/core_ext.rb', line 3 def sum inject(0) do |sum, each| block_given? ? sum + yield(each) : sum + each end end |