//! Neon optimized Shannon entropy for aarch64.
/// AArch64 entropy: shared multi-stream histogram + shared exact reduction.
///
/// Counting (the memory-bound part) and the null-byte contract live in the
/// shared [`crate::entropy::fast::histogram_8way`]; the 256-bin reduction is the
/// shared exact [`crate::entropy::fast::entropy_from_histogram`]. Funnelling both
/// through the one definition keeps this path bit-identical to scalar/AVX2/SSE2
/// (KH-25, KH-28, KH-34).
pub