Method: Array#sum

Defined in:
lib/highway/array.rb

#sum(start = 0) ⇒ Object



2
3
4
# File 'lib/highway/array.rb', line 2

def sum(start = 0)
  inject(start, &:+)
end