# File lib/map.rb, line 63
    def tap(*args, &block)
      new(*args).tap do |map|
        map.tap(&block) if block
      end
    end