Class: Array
Instance Method Summary collapse
Instance Method Details
#+(other) ⇒ Object
160 161 162 163 164 165 |
# File 'lib/egison/lazyarray.rb', line 160 def + other if other.kind_of?(Egison::LazyArray) return other.clone.unshift(*self) end org_plus_meth_esc_by_egison_lazyarray(other) end |
#org_plus_meth_esc_by_egison_lazyarray ⇒ Object
159 |
# File 'lib/egison/lazyarray.rb', line 159 alias :org_plus_meth_esc_by_egison_lazyarray :+ |