//! 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
pub use ComposedMapping;
pub use Differentiable;
pub use ;