buffer-builder
buffer-builder copied to clipboard
support chunking growth policy
On naive implementations of realloc(), the current growth implementation copies (lg N) times. If we chunked into a linked list, we'd have the option to produce a Lazy ByteString, avoiding a copy, or we could copy once into a Strict ByteString.