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