1 2 3 4 5 6 7 8 9 10
cfg_if::cfg_if! { if #[cfg(target_feature = "neon")] { mod neon; pub(crate) use neon::Vector; } else { compile_error!( "enable the `neon` target features using `target-cpu=native`, or disable the `simd` feature" ); } }