# File lib/facet/floatstring.rb, line 46
  def initialize( str )
    @str = str
    @float = {}
    i = 0
    while i < @str.length
      @float[i.to_f] = @str[i,1]
      i += 1
    end 
  end