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