Expand description
§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]);
}Modules§
- big_
fraction - Big-Fraction type & its trait implementations
- fraction
- Fraction type & its trait implementations
- macros
- Macros for creating and manipulating Fractions
- prelude
- A prelude for frequently used types, traits, & macros
- traits
- ….traits
- types
- Type definitions & their non-trait impl’s