//! SIMD-accelerated rolling window operations
//!
//! This module provides high-performance rolling window calculations using:
//! - Portable SIMD via the `wide` crate (works on stable Rust)
//! - Algorithmic optimizations (deque-based min/max, Welford's algorithm for std)
//! - Smart thresholds to avoid SIMD overhead on small arrays
// Re-export public API
pub use clip;
pub use ;
pub use ;
pub use ;
pub use ;
/// Threshold for SIMD: arrays smaller than this use scalar fallback
pub const SIMD_THRESHOLD: usize = 64;