Skip to main content

gam_inference/util/
quantile.rs

1//! Quantile / order-statistic helpers.
2//!
3//! These are single-sourced in the `gam-math` crate (the neutral numeric
4//! layer shared by the sibling crates that consume them). This module
5//! re-exports them so existing `crate::util::quantile::*` paths keep resolving
6//! without a second, drift-prone copy of the definitions.
7pub use gam_math::quantile::*;