class Protocol::HTTP::Body::Buffered

def read

@returns [String | Nil] the next chunk or nil if there are no more chunks.

Read the next chunk from the buffered body.
def read
	return nil unless @chunks
	
	if chunk = @chunks[@index]
		@index += 1
		
		return chunk.dup
	end
end