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
//! Mapping: A general kind of function
//!
//! - [`ComposedMapping`] - Two `Mapping`s composed in series
//! - [`Differentiable`] - Has a derivative
//! - [`Mapping`]/[`IndexedMapping`] - Objects that can be evaluated at some argument

mod composition;
mod differentiable;
mod mapping;

pub use composition::ComposedMapping;
pub use differentiable::Differentiable;
pub use mapping::{IndexedMapping, Mapping};