class Protocol::HTTP::Header::Split
def << value
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.split(COMMA)) end
def << value self.concat(value.split(COMMA)) end