Class: NSArray
Overview
HotCocoa extensions for the NSArray class
Instance Method Summary collapse
-
#second ⇒ Object
Equivalent to
#[1]
, borrowed from Active Support. -
#third ⇒ Object
Equivalent to
#[2]
, borrowed from Active Support.
Instance Method Details
#second ⇒ Object
Equivalent to #[1]
, borrowed from Active Support.
6 7 8 |
# File 'lib/hotcocoa/core_extensions/nsarray.rb', line 6 def second at(1) end |
#third ⇒ Object
Equivalent to #[2]
, borrowed from Active Support.
12 13 14 |
# File 'lib/hotcocoa/core_extensions/nsarray.rb', line 12 def third at(2) end |