class Protocol::HTTP::Header::CacheControl

def initialize(value = nil)

@parameter value [String | Nil] the raw Cache-Control header value.

Initializes the cache control header with the given value. The value is expected to be a comma-separated string of cache directives.
def initialize(value = nil)
	super(value&.downcase)
end