module Corefines::Array::Third
@!method third
@return the third element, or +nil+ if doesn't exist.
Public Instance Methods
third()
click to toggle source
# File lib/corefines/array.rb, line 22 def third self[2] end