class Protocol::HTTP::Header::Split

def << value

@parameter value [String] the value or values to add, separated by commas.

The input string is split into distinct entries and appended to the array.

Adds one or more comma-separated values to the header.
def << value
	self.concat(value.split(COMMA))
end