//! SIMD helpers.
//!
//! Historically we tried using `packed_simd_2` which fails on some stable
//! toolchains/targets; for portability the `simd` feature currently uses a
//! scalar fallback. In future we can wire `std::simd` or a packed backend
//! behind this feature when we detect compiler support.
pub use ;