# File lib/hashery/fuzzy_hash.rb, line 30
    def initialize(init_hash = nil)
      @fuzzies = []
      @hash_reverse = {}
      @fuzzies_reverse = {}
      @fuzzy_hash = {}
      @hash = {}
      init_hash.each{ |key,value| self[key] = value } if init_hash
    end