1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(missing_docs, clippy::missing_safety_doc)]

//! Arbitrary precision integer and rational arithmetic library wrapping
//! [`imath`](https://github.com/creachadair/imath/)

#[macro_use]
pub(crate) mod error;
pub(crate) mod integer;
pub(crate) mod rational;

pub use crate::{
    error::Error,
    integer::Integer,
    rational::{Rational, RoundMode},
};