binary_ok

You can use real and integers numbers, as you wish.

Put this on your cargo.toml file to use this crate: [dependencies] binary_ok = "0.1.1" ``` use::binary_ok;

binaryok::tobinary(number: &f64); binaryok::todecimal(number: &f64); ``` to_binary() returns a bits string

to_decimal() returns a f64 decimal number ``` let x: f64 = 1110101.0; let y: f64 = 1001101.11;

let result: String = binaryok::tobinary(&(binaryok::todecimal(&x) + binaryok::todecimal(&y))); println!("{}", result); ``` Output = 11000010.11