[][src]Function safe_arch::move_m128_s

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

Move the low lane of b to a, other lanes unchanged.

let a = m128::from_array([1.0, 12.0, 3.0, 4.0]);
let b = m128::from_array([8.0, 6.0, 7.0, 8.5]);
let c = move_m128_s(a, b).to_array();
assert_eq!(c, [8.0, 12.0, 3.0, 4.0]);