[][src]Function safe_arch::unpack_high_i16_m128i

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

Unpack and interleave high i16 lanes of a and b.

let a = m128i::from([1_i16, 2, 3, 4, -1, -2, -3, -4]);
let b = m128i::from([5_i16, 6, 7, 8, -15, -26, -37, 48]);
let c: [i16; 8] = unpack_high_i16_m128i(a, b).into();
assert_eq!(c, [-1, -15, -2, -26, -3, -37, -4, 48]);