pub fn vlq_decode_unsigned(
input: &[u8],
pos: usize,
) -> Result<(u64, usize), DecodeError>Expand description
Decode a single unsigned VLQ value from the input bytes starting at the given position.
Returns (decoded_value, bytes_consumed) or a DecodeError.
Unlike signed VLQ, no sign bit extraction is performed.