pub fn extract_i64_imm_m128i<const IMM: i32>(a: m128i) -> i64
Available with target feature sse4.1 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);