class Protocol::HTTP::Header::Accept

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.scan(SEPARATOR).map(&:strip))
end