//! Native Rust CLMM/AMM math library.
//!
//! Provides Uniswap V3 compatible math functions using only
//! `alloy_primitives::U256`. Zero dependency on `uniswap-v3-sdk`
//! or `uniswap-sdk-core`.
pub use AmmMathError;
/// Convenience result type for this crate.
pub type Result<T> = Result;