# File lib/hashery/lruhash.rb, line 80
  def [](key)
    fetch(key) do |k|
      @default_proc ? @default_proc[self, k] : default
    end
  end