class Protocol::HTTP::Response

def to_ary

@returns [Array] The response as an array, e.g. `[status, headers, body]`.

Implicit conversion to an array.
def to_ary
	return @status, @headers, @body
end