[][src]Function safe_arch::shr_all_u64_m256i

#[must_use]pub fn shr_all_u64_m256i(a: m256i, count: m128i) -> m256i
This is supported with target feature avx2 only.

Lanewise u64 shift right by the lower u64 lane of count.

let a = m256i::from([0_u64, 1, 2, 13]);
let count = m128i::from(1_u128);
let b: [u64; 4] = shr_all_u64_m256i(a, count).into();
assert_eq!(b, [0, 0, 1, 6]);