class Protocol::HTTP::Headers

def initialize_dup(other)

@parameter other [Headers] The headers to copy.

Initialize a copy of the headers.
def initialize_dup(other)
	super
	
	@fields = @fields.dup
	@indexed = @indexed.dup
end