class Protocol::HTTP::Header::Split

def initialize(value = nil)

@parameter value [String | Nil] the raw header value containing multiple entries separated by commas, or `nil` for an empty header.

Initializes a `Split` header with the given value. If the value is provided, it is split into distinct entries and stored as an array.
def initialize(value = nil)
	if value
		super(value.split(COMMA))
	else
		super()
	end
end