Auxiliary function
()
| 1254 | |
| 1255 | // Auxiliary function |
| 1256 | func (b *ByteBuffer) remaining() int { |
| 1257 | return len(b.data) - b.readerIndex |
| 1258 | } |
| 1259 | |
| 1260 | // ReadUint8 reads a uint8 and sets error on bounds violation |
| 1261 | func (b *ByteBuffer) ReadUint8(err *Error) uint8 { |
no outgoing calls
no test coverage detected