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