2026-02-22 18:51:21 +01:00
|
|
|
# Buffer
|
|
|
|
|
|
|
|
|
|
Pooled Buffer IO for Go programs.
|
|
|
|
|
|
2026-03-26 18:12:49 +01:00
|
|
|
Package buffer provides a reader implementation similar to bufio.Reader, and a writer implementation to batch
|
|
|
|
|
write operations targeting an underlying writer. The used memory buffers can be taken from a synchronized pool.
|
|
|
|
|
It also supports scenarios similar to io.Pipe, where a content writer process is wrapped by a buffered reader.
|
2026-02-22 18:51:21 +01:00
|
|
|
|
|
|
|
|
Find the documentation here:
|
|
|
|
|
|
2026-02-22 18:52:22 +01:00
|
|
|
- [lib.go](lib.go)
|
2026-02-22 18:51:21 +01:00
|
|
|
- https://godocs.io/code.squareroundforest.org/arpio/buffer
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
*Made in Berlin, DE*
|