class Protocol::HTTP::Header::Vary
def initialize(value)
Initializes a `Vary` header with the given value. The value is split into distinct entries and converted to lowercase for normalization.
def initialize(value) super(value.downcase) end
def initialize(value) super(value.downcase) end