Method: Array#sum

Defined in:
lib/openc3/core_ext/array.rb

#sumNumeric

Returns The sum of all the elements in the array.

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