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

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