#[cfg(any(all(target_feature = "avx", target_feature = "avx2"), dox))]
#[cfg_attr(dox, doc(cfg(all(target_feature = "avx", target_feature = "avx2"))))]
pub mod avx;
#[cfg(any(
all(
target_feature = "sse2",
target_feature = "ssse3",
target_feature = "sse4.1",
),
dox
))]
#[cfg_attr(
dox,
doc(cfg(all(
target_feature = "sse2",
target_feature = "ssse3",
target_feature = "sse4.1",
)))
)]
pub mod sse;