Class: NSArray

Inherits:
Object show all
Defined in:
lib/hotcocoa/core_extensions/nsarray.rb

Overview

HotCocoa extensions for the NSArray class

Instance Method Summary collapse

Instance Method Details

#secondObject

Equivalent to #[1], borrowed from Active Support.



6
7
8
# File 'lib/hotcocoa/core_extensions/nsarray.rb', line 6

def second
  at(1)
end

#thirdObject

Equivalent to #[2], borrowed from Active Support.



12
13
14
# File 'lib/hotcocoa/core_extensions/nsarray.rb', line 12

def third
  at(2)
end