adic 0.5.1

Arithmetic and rootfinding for p-adic numbers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Adic fraction (non-integer) structs
//!
//! - [`QAdic`] - Generic that can hold any of the above `AdicInteger`s and represent and `AdicPrimitive`

mod conversion;
mod q_adic;
mod q_adic_ops;
mod trait_impl;

pub use q_adic::QAdic;

#[cfg(test)]
mod test;
#[cfg(test)]
mod test_ops;