class Protocol::HTTP::Body::Buffered

def initialize(chunks = [], length = nil)

@parameter length [Integer] the length of the body, if known.
@parameter chunks [Array(String)] the chunks to buffer.

Initialize the buffered body with some chunks.
def initialize(chunks = [], length = nil)
	@chunks = chunks
	@length = length
	
	@index = 0
end