//! Progressive (prequential) evaluation.
//!
//! The evaluation order is fixed:
//! ```text
//! predict → metric.update → learn
//! ```
//! This ensures each prediction is made *before* the model sees the current
//! sample, giving an honest estimate of generalization on streaming data.
pub use ;