# File lib/hashery/lru_hash.rb, line 177
    def rassoc(value)
      each_node do |n|
        if value.eql? n.value
          front(n)
          return [n.key, n.value]
        end
      end
      nil
    end