class Protocol::HTTP::Header::Priority
def incremental?
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