# File lib/core/facets/indexable.rb, line 261
  def range(a=nil,z=-1)
    if a
      index(a)..index(z)
    else
      (0..(size-1))
    end
  end