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