[][src]Function safe_arch::set_m128_s

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

Sets the args into an m128, first arg is the high lane.

let a = set_m128_s(1.0).to_array();
let b = m128::from_array([1.0, 0.0, 0.0, 0.0]).to_array();
assert_eq!(a, b);