class Protocol::HTTP::Request

def head?

Whether this is a HEAD request: no body is expected in the response.
def head?
	@method == Methods::HEAD
end