# File lib/hashery/lruhash.rb, line 116
  def assoc(key)
    n = @h[key]

    if n
      front(n)
      [n.key, n.value]
    end
  end