(start, length int)
| 462 | } |
| 463 | |
| 464 | func (b *ByteBuffer) Slice(start, length int) *ByteBuffer { |
| 465 | return NewByteBuffer(b.data[start : start+length]) |
| 466 | } |
| 467 | |
| 468 | func (b *ByteBuffer) WriterIndex() int { |
| 469 | return b.writerIndex |
no test coverage detected