Count Values in an Array
1 2 class Array 3 def total 4 t = 0 5 self.each { |v| t += v } 6 t 7 end 8 end
Use it like this:
1 2 [1,2,2,3].total # => 8
DZone Snippets > danger > count
12750 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Danger http://6brand.com
1 2 class Array 3 def total 4 t = 0 5 self.each { |v| t += v } 6 t 7 end 8 end
1 2 [1,2,2,3].total # => 8