pub unsafe fn simd_ne<T, U>(_x: T, _y: T) -> U
🔬This is a nightly-only experimental API. (
core_intrinsics
)Available on crate feature
std
only.Expand description
Tests elementwise inequality equality of two vectors.
T
must be a vector of floating-point primitive types.
U
must be a vector of integers with the same number of elements and element size as T
.
Returns 0
for false and !0
for true.