[][src]Function safe_arch::sqrt_m128

#[must_use]pub fn sqrt_m128(a: m128) -> m128
This is supported with target feature sse only.

Lanewise sqrt(a).

let a = m128::from_array([25.0, 16.0, 9.0, 4.0]);
let b = sqrt_m128(a).to_array();
assert_eq!(b, [5.0, 4.0, 3.0, 2.0]);