class Protocol::HTTP::Header::Accept
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.scan(SEPARATOR).map(&:strip)) end