class LazyArray

Public Instance Methods

+(other) click to toggle source

lazy array

# File lib/lazzay.rb, line 25
def +(other)
    if ! other.is_a?(LazyArray)
        other = LazyArray.new(other)
    end
    AddArray.new(self, other)
end