pub fn detect_neon() -> boolExpand description
Detect NEON SIMD support at runtime.
Returns true on ARM64 platforms with NEON support (most ARM64 CPUs).
Returns false on all other platforms.
ยงExample
use edgevec::simd::detect_neon;
if detect_neon() {
println!("NEON SIMD available!");
}