Slice returns a new Buffer that is a view into this buffer's data from [start:end). The buffer is not modified. Panics if the buffer has been freed or if start/end are out of bounds.
(start, end int)
| 57 | // from [start:end). The buffer is not modified. Panics if the buffer |
| 58 | // has been freed or if start/end are out of bounds. |
| 59 | Slice(start, end int) Buffer |
| 60 | |
| 61 | split(n int) (left, right Buffer) |
| 62 | read(buf []byte) (int, Buffer) |
no outgoing calls