[][src]Function safe_arch::div_m128_s

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

Low lane a / b, other lanes unchanged.

let a = m128::from_array([10.0, 12.0, 13.0, 14.0]);
let b = m128::from_array([2.0, 6.0, 13.0, 2.0]);
let c = div_m128_s(a, b).to_array();
assert_eq!(c, [5.0, 12.0, 13.0, 14.0]);