Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/scbi_math/array_extras.rb

Instance Method Summary collapse

Instance Method Details

#sumObject



3
4
5
6
7
8
9
# File 'lib/scbi_math/array_extras.rb', line 3

def sum
  r=0
  each do |e|
    r+=e
  end
  return r
end