# File lib/facet/array/range.rb, line 14
  def range(a=nil,z=nil)
    if !a
      0..self.length-1
    else
      index(a)..index(z)
    end
  end