#bin #int #convert #test #bin-u64 #u64-bin

intbin

convert int to bin / bin to int

3 unstable releases

0.1.2 Nov 16, 2023
0.1.1 Nov 16, 2023
0.0.5 Aug 19, 2023

#53 in #int

Download history 20/week @ 2024-02-15 41/week @ 2024-02-22 16/week @ 2024-02-29 13/week @ 2024-03-07 13/week @ 2024-03-14 40/week @ 2024-03-28 22/week @ 2024-04-04 57/week @ 2024-04-11 32/week @ 2024-04-18 52/week @ 2024-04-25

182 downloads per month
Used in 5 crates (4 directly)

Apache-2.0

8KB
152 lines

intbin : convert int to bin / bin to int

→ tests/main.rs

use intbin::{bin_u64, u64_bin};

#[test]
fn main() {
  let bin = u64_bin(987654321);
  dbg!(&bin);
  dbg!(bin_u64(bin));
}

run

→ out.txt

+ 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

No runtime deps