#fraction #operations

beetle-fraction

functions & structs for doing math with fractions

10 releases

0.3.4 Aug 6, 2023
0.3.3 Jul 2, 2023
0.3.1 Jun 24, 2023
0.2.3 Mar 1, 2023
0.2.0 Dec 30, 2022

#438 in Math

MIT license

38KB
789 lines

Beetle-Fraction

A set of functions and structs for doing math with rational numbers.

Example program:

fn main() {
let half = frac![1, 2];
assert_eq!(half * half, frac![1, 4]);
}

Dependencies

~470KB