Method: Array#sum
- Defined in:
- lib/openc3/core_ext/array.rb
#sum ⇒ Numeric
Returns The sum of all the elements in the array.
235 236 237 |
# File 'lib/openc3/core_ext/array.rb', line 235 def sum self.inject(0, :+) end |
Returns The sum of all the elements in the array.
235 236 237 |
# File 'lib/openc3/core_ext/array.rb', line 235 def sum self.inject(0, :+) end |