class Protocol::HTTP::Header::CacheControl

def max_age

@returns [Integer | Nil] the value of the `max-age` directive in seconds, or `nil` if the directive is not present or invalid.
def max_age
	find_integer_value(MAX_AGE)
end