class Protocol::HTTP::Header::Accept

def media_ranges

@returns [Array(Charset)] the list of content types and their associated parameters.

Parse the `accept` header.
def media_ranges
	self.map do |value|
		self.parse_media_range(value)
	end
end