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

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