3 个不稳定版本
0.1.2 | 2023年11月16日 |
---|---|
0.1.1 | 2023年11月16日 |
0.0.5 | 2023年8月19日 |
54 在 #int
每月191 次下载
在 9 个 (5 个直接) crate 中使用
8KB
152 行
intbin : 将整数转换为二进制 / 将二进制转换为整数
use intbin::{bin_u64, u64_bin};
#[test]
fn main() {
let bin = u64_bin(987654321);
dbg!(&bin);
dbg!(bin_u64(bin));
}
运行
+ cargo test -- --nocapture
Compiling intbin v0.1.1 (/Users/z/art/intbin)
Finished test [unoptimized + debuginfo] target(s) in 0.12s
Running unittests src/lib.rs (target/debug/deps/intbin-ffe375fcab040bbd)
Running tests/main.rs (target/debug/deps/main-5e93df032d50e825)
[tests/main.rs:6] &bin = [
177,
104,
222,
58,
]
[tests/main.rs:7] bin_u64(bin) = 987654321
Doc-tests intbin