class Protocol::HTTP::Header::Split
def initialize(value = nil)
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