# File lib/hashery/fuzzy_hash.rb, line 153
    def match_with_result(key)
      if hash.key?(key)
        [hash[key], key]
      else
        fuzzy_lookup(key)
      end
    end