# File lib/hashery/lru_hash.rb, line 101
    def fetch(key, &b)
      n = @h[key]

      if n
        front(n).value
      else
        (b || FETCH)[key]
      end
    end