module ArrayNamedAccess

Public Instance Methods

second() click to toggle source
# File lib/array_named_access.rb, line 3
def second
  self[1]
end
third() click to toggle source
# File lib/array_named_access.rb, line 7
def third
  self[2]
end