ByteBuffer raw bytes wrapper
| 43 | |
| 44 | // ByteBuffer raw bytes wrapper |
| 45 | type ByteBuffer struct { |
| 46 | buf []byte |
| 47 | off int |
| 48 | } |
| 49 | |
| 50 | // NewByteBuffer creates a new ByteBuffer. |
| 51 | func NewByteBuffer(buf []byte) *ByteBuffer { |
nothing calls this directly
no outgoing calls
no test coverage detected