module Corefines::Array::Second

@!method second

@return the second element, or +nil+ if doesn't exist.

Public Instance Methods

second() click to toggle source
# File lib/corefines/array.rb, line 11
def second
  self[1]
end