(writerIndex int, value uint8)
| 1400 | } |
| 1401 | |
| 1402 | func (b *ByteBuffer) PutUint8(writerIndex int, value uint8) { |
| 1403 | b.data[writerIndex] = byte(value) |
| 1404 | } |
| 1405 | |
| 1406 | // WriteVarUint32Small7 writes a uint32 in variable-length small-7 format |
| 1407 | func (b *ByteBuffer) WriteVarUint32Small7(value uint32) int { |
no outgoing calls
no test coverage detected