Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/photo_utils/extensions/array.rb
Instance Method Summary collapse
Instance Method Details
#mean ⇒ Object
7 8 9 |
# File 'lib/photo_utils/extensions/array.rb', line 7 def mean sum / size end |
#sum ⇒ Object
3 4 5 |
# File 'lib/photo_utils/extensions/array.rb', line 3 def sum inject(nil) { |sum, x| sum ? sum + x : x } end |