5个不稳定版本
0.3.0 | 2020年12月28日 |
---|---|
0.2.0 | 2020年12月21日 |
0.1.2 | 2020年12月20日 |
0.1.1 | 2020年12月20日 |
0.1.0 | 2020年12月20日 |
#628 in 压缩
27KB
663 行
Vint32
为Rust提供的快速vint u32编码。最多使用5个字节。
示例
use vint32::encode_varint_into;
let mut output = vec![];
encode_varint_into(&mut output, 50);
assert_eq!(output.len(), 1);
测试
cargo测试 --all-features
lib.rs
:
为Rust提供的快速vint u32编码。最多使用5个字节。
示例
use vint32::encode_varint_into;
let mut output = vec![];
encode_varint_into(&mut output, 50);
assert_eq!(output.len(), 1);
依赖
~110KB