/// Word-level equality comparison on `[u64]` backing storage.
///
/// Accepts a bit-level `offset` and handles word slicing and intra-word
/// shift internally:
/// - `offset % WORD_BITS == 0` — word-aligned, uses [`funcs_for_eq_words_aligned_core`].
/// - `offset % WORD_BITS != 0` — unaligned shifted-window, uses [`funcs_for_eq_words_unaligned_core`].
///
/// Short inputs fall back to scalar in both backends.
pub
pub
pub
pub