# File lib/more/facets/memoizer.rb, line 49
  def method_missing(method_name, *args, &block)
    @cache[[method_name, args, block]] ||= @self.__send__(method_name, *args, &block)
  end