# File lib_core/rucy/rep.rb, line 44
    def fetch(key, *args, &block)
      unless (@map.include? key) then
        raise "not found an object associated with #{key.inspect}"
      end
      @map[key].call(*args, &block)
    end