#ratio #integer #fraction #approximation

int_ratio

The type of ratios represented by two integers

1 unstable release

0.1.0 Jul 17, 2024

#414 in Math

Download history 81/week @ 2024-07-11 365/week @ 2024-07-18 514/week @ 2024-07-25 393/week @ 2024-08-01 199/week @ 2024-08-08 192/week @ 2024-08-15 193/week @ 2024-08-22 260/week @ 2024-08-29

854 downloads per month

GPL-3.0-or-later OR Apache-2…

7KB
110 lines

int_ratio

Crates.io Docs.rs CI

The type of ratios and related operations.

A ratio is the result of dividing two integers, i.e., the numerator and denominator.

Examples

use int_ratio::Ratio;

let ratio = Ratio::new(1, 3); // 1 / 3
assert_eq!(ratio.mul_trunc(20), 6); // trunc(20 * 1 / 3) = trunc(6.66..) = 6
assert_eq!(ratio.mul_round(20), 7); // round(20 * 1 / 3) = round(6.66..) = 7
println!("{:?}", ratio); // Ratio(1/3 ~= 1431655765/4294967296)

No runtime deps