Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/lazzay.rb
Overview
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#+(other) ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/lazzay.rb', line 14 def +(other) if other.is_a?(LazyArray) AddArray.new(self, other) else super end end |