# File lib/hashery/lruhash.rb, line 102
  def has_value?(value)
    each_pair do |k, v|
      return true if value.eql? v
    end

    false
  end