//! The scalar number system the calculus modules are generic over.
//!
//! [`Numeric`] is the scalar trait, implemented for `f32` and `f64`. [`Dual`] and [`HyperDual`]
//! are scalar types that also implement it, giving exact first (and, for `HyperDual`, second)
//! derivatives by automatic differentiation.
pub use Dual;
pub use ;
pub use HyperDual;
pub use Jet;
pub use Numeric;
pub use Primal;