/// Word-level equality comparison on `[u64]` backing storage.
///
/// Two operations are provided:
/// - [`eq_words`] — direct word comparison for word-aligned sequences.
/// - [`eq_words_shifted`] — shifted-window comparison for unaligned sequences.
///
/// Each dispatches to the best available SIMD backend (AVX2, SSE2, NEON)
/// at compile time, falling back to scalar for small inputs.
pub
pub
pub
pub