class Array

Lazy Array

Example

Public Instance Methods

+(other) click to toggle source
Calls superclass method
# File lib/lazzay.rb, line 14
def +(other)
    if other.is_a?(LazyArray)
        AddArray.new(self, other)
    else
        super
    end
end