2个版本
0.1.1 | 2023年5月8日 |
---|---|
0.1.0 | 2023年5月8日 |
#2278 在 编码
每月319次下载
5KB
66 行
leb128-u64
极简且简单的LEB128 u64
编码/解码。
示例
let input: u64 = 42;
let mut buf = Vec::new();
leb128_u64::encode(input, &mut buf);
assert_eq!(leb128_u64::encoded_len(input), buf.len());
let output = leb128_u64::decode(&buf[..]);
assert_eq!(input, output);
依赖项
~170KB