class Protocol::HTTP::Header::Date

This header is typically included in HTTP responses and follows the format defined in RFC 9110.
The ‘date` header represents the date and time at which the message was originated.

def << value

@parameter value [String] the new value for the `date` header.

Replaces the current value of the `date` header with the specified value.
def << value
	replace(value)
end

def to_time

@returns [Time] the parsed time object corresponding to the `date` header value.

Converts the `date` header value to a `Time` object.
def to_time
	::Time.parse(self)
end