Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/core_ext/array.rb
Instance Method Summary collapse
Instance Method Details
#+@ ⇒ Object
2 3 4 5 6 |
# File 'lib/core_ext/array.rb', line 2 def +@ map do |element| element + 1 end end |
#-@ ⇒ Object
8 9 10 11 12 |
# File 'lib/core_ext/array.rb', line 8 def -@ map do |element| element - 1 end end |