buffer tees a Reader to multiple buffered Readers.
| 25 | |
| 26 | // buffer tees a Reader to multiple buffered Readers. |
| 27 | type buffer struct { |
| 28 | cond *sync.Cond |
| 29 | data []byte |
| 30 | bufs []*bufReader |
| 31 | err error |
| 32 | } |
| 33 | |
| 34 | type bufReader struct { |
| 35 | buffer *buffer |
nothing calls this directly
no outgoing calls
no test coverage detected