[][src]Function safe_arch::unpack_high_i64_m128i

#[must_use]pub fn unpack_high_i64_m128i(a: m128i, b: m128i) -> m128i
This is supported with target feature sse2 only.

Unpack and interleave high i64 lanes of a and b.

let a = m128i::from([92_i64, 87]);
let b = m128i::from([-9001_i64, 1]);
let c: [i64; 2] = unpack_high_i64_m128i(a, b).into();
assert_eq!(c, [87, 1]);