class Protocol::HTTP::Response

def informational?

Whether the status is considered informational.
def informational?
	@status and @status >= 100 && @status < 200
end