Function extract_i64_imm_m128i
pub fn extract_i64_imm_m128i<const IMM: i32>(a: m128i) -> i64 ⓘ
Available on crate feature
dep_safe_arch
only.Expand description
Gets the i64
lane requested. Only the lowest bit is considered.
let a = m128i::from([5_i64, 6]);
assert_eq!(extract_i64_imm_m128i::<1>(a), 6_i64);