I am Attempting to Use the Enumerable mixin to make all the standard iterators available in my class named NumberArray . From that I'm trying to use the inject iterator to get the average of odd numbers in the array .
My code looks like this
class NumberArray
include Enumerable
def initialize
@numbers = Array.new
end
then @numbers array is then filled with 1000 numbers
and finally I'm trying to create my own inject iterator to get the average of the odd values.
def inject
puts self.inject{|sum,x| sum = sum + x if sum mod 2 == 1}
asum
end
I am very new to Ruby.
You could also just subclass Array and override methods you want:
If it makes any sense to do it this way is another thing, but that's what you asked :)