UnsafeReadVarUint32 reads a VarUint32 without bounds checking. Caller must ensure remaining() >= 5 before calling.
(err *Error)
| 1310 | // UnsafeReadVarUint32 reads a VarUint32 without bounds checking. |
| 1311 | // Caller must ensure remaining() >= 5 before calling. |
| 1312 | func (b *ByteBuffer) UnsafeReadVarUint32(err *Error) uint32 { |
| 1313 | return b.readVarUint32Fast(err) |
| 1314 | } |
| 1315 | |
| 1316 | // UnsafeReadVarUint64 reads a VarUint64 without bounds checking. |
| 1317 | // Caller must ensure remaining() >= 10 before calling. |
no test coverage detected