class Protocol::HTTP::Header::Priority

def incremental?

@returns [Boolean] whether the request should be delivered incrementally.

The `i` directive, when present, indicates that the response can be delivered incrementally as data becomes available.

Checks if the response should be delivered incrementally.
def incremental?
	self.include?("i")
end