Convenience method to return the second element in the list
[‘a’, ‘b’, ‘c’].second # => ‘b’
Returns:
The second object in the array
11 12 13
# File 'lib/snmputils/arrayutils.rb', line 11 def second return at(1) end