class Protocol::HTTP::Header::Accept

def initialize(value = nil)

@parameter value [String] the value of the header.

Parse the `accept` header value into a list of content types.
def initialize(value = nil)
	if value
		super(value.scan(SEPARATOR).map(&:strip))
	end
end