// SPDX-License-Identifier: Apache-2.0
// WASM SIMD128 path for u32 filtering.
//
// `core::arch::wasm32::u32x4_extract_lane` requires a const-generic lane
// index, which can't be a loop variable in stable Rust. Writing a manual
// 4-lane unroll for every comparator was deemed not worth the complexity
// — LLVM auto-vectorizes the scalar path on `wasm32` with `simd128` well
// enough that the gap is small. So this module just delegates to scalar
// for both equality and inequality on wasm32.
use ;
pub
pub