Method: Array#forty_two
- Defined in:
- activesupport/lib/active_support/core_ext/array/access.rb
#forty_two ⇒ Object
Equal to self[41]
. Also known as accessing “the reddit”.
(1..42).to_a.forty_two # => 42
83 84 85 |
# File 'activesupport/lib/active_support/core_ext/array/access.rb', line 83 def forty_two self[41] end |