# File lib/sinatra/cookies.rb, line 204
      def merge!(other)
        other.each_pair do |key, value|
          if block_given? and include? key
            self[key] = yield(key.to_s, self[key], value)
          else
            self[key] = value
          end
        end
      end