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