pub fn store_high_m128d_s(r: &mut f64, a: m128d)
Available with target feature sse2 only.
Expand description

Stores the high lane value to the reference given.

let a = m128d::from_array([10.0, 12.0]);
let mut f = 0.0;
store_high_m128d_s(&mut f, a);
assert_eq!(f, 12.0);