| 182 | ) |
| 183 | |
| 184 | type pageBuffer struct { |
| 185 | refc refCount |
| 186 | pages contiguousPages |
| 187 | length int |
| 188 | cursor int |
| 189 | } |
| 190 | |
| 191 | func newPageBuffer() *pageBuffer { |
| 192 | b, _ := pageBufferPool.Get().(*pageBuffer) |
nothing calls this directly
no outgoing calls
no test coverage detected