Function safe_arch::unpack_high_m128
source · pub fn unpack_high_m128(a: m128, b: m128) -> m128
Expand description
Unpack and interleave high lanes of a
and b
.
let a = m128::from_array([1.0, 2.0, 3.0, 4.0]);
let b = m128::from_array([5.0, 6.0, 7.0, 8.0]);
let c = unpack_high_m128(a, b).to_array();
assert_eq!(c, [3.0, 7.0, 4.0, 8.0]);