# File lib/facets/core/array/pos.rb, line 8
  def pos(i)
    if i > 0
      return i - 1
    else
      self.length + i
    end
  end