class Protocol::HTTP::Header::Vary

def initialize(value)

@parameter value [String] the raw header value containing request header names separated by commas.

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