Method: Enumerable#sum

Defined in:
lib/sbn/helpers.rb

#sumObject

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