adic 0.5.1

Arithmetic and rootfinding for p-adic numbers
Documentation
//! Adic integer structs
//!
//! - [`UAdic`] - Finite set of digits to represent non-negative integers
//! - [`IAdic`] - Finite digits and trailing either zeros or p-1, to represent any integers
//! - [`RAdic`] - Infinite repeating digits to represent all integers and most rationals
//! - [`ZAdic`] - Infinite digits to represent all p-adic integers Z_p

mod conversion;
mod i_adic;
mod r_adic;
mod ops;
mod sign;
mod trait_impl;
mod u_adic;


pub (crate) use i_adic::IAdic;
pub (crate) use r_adic::RAdic;
use sign::Sign;

pub use u_adic::UAdic;


#[cfg(test)]
mod test_ops;