Skip to main content

is_ascii

Function is_ascii 

Source
const fn is_ascii(bytes: &[u8]) -> bool
Available on x86-64 and target feature sse2 only.
Expand description

ASCII test optimized to use the pmovmskb instruction on x86-64.

Uses explicit SSE2 intrinsics to prevent LLVM from auto-vectorizing with broken AVX-512 code that extracts mask bits one-by-one.