# File lib/hashery/fuzzyhash.rb, line 27
  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