//! SIMD-optimized preset function library.
//!
//! The slice-iterating wrappers in this module dispatch to the 4-lane
//! kernels under [`crate::asm_presets`]. Every kernel emits explicit
//! `core::arch::asm!` instructions for its target ISA — there is no
//! reliance on the compiler's auto-vectorizer (`simd_review §1`).
//!
//! - `arithmetic` — Batch add, mul, scalar-add, pow, cmp-eq, FMA,
//! coefficient-merge.
//! - `hash` — AES-NI based batch hashing for dedup.
//! - `detect` — Runtime CPU feature detection (SSE4.2, AVX2, NEON).
pub use ;
pub use ;
pub use batch_hash;
pub use ;