Method: Enumerable#average

Defined in:
lib/sbn/helpers.rb

#averageObject

Average of all the elements of the Enumerable

The Enumerable must respond to #length



119
120
121
# File 'lib/sbn/helpers.rb', line 119

def average
  return self.sum / self.length.to_f
end