(data []byte)
| 469 | } |
| 470 | |
| 471 | func newPooledBuffer(data []byte) mem.Buffer { |
| 472 | return newBuffer(data, mem.NopBufferPool{}) |
| 473 | } |
| 474 | |
| 475 | func newSliceBuf(data []byte) mem.Buffer { |
| 476 | return mem.SliceBuffer(data) |
nothing calls this directly
no test coverage detected