Method: Enumerable#sum
- Defined in:
- lib/sbn/helpers.rb
#sum ⇒ Object
Sum of all the elements of the Enumerable
111 112 113 |
# File 'lib/sbn/helpers.rb', line 111 def sum return self.inject(0) { |acc, i| acc + i } end |
Sum of all the elements of the Enumerable
111 112 113 |
# File 'lib/sbn/helpers.rb', line 111 def sum return self.inject(0) { |acc, i| acc + i } end |