Function set_splat_i64_m128i
pub fn set_splat_i64_m128i(i: i64) -> m128i
Available on crate feature
dep_safe_arch
only.Expand description
Splats the i64
to both lanes of the m128i
.
let a = m128i::from([1_i64, 1]);
let b = set_splat_i64_m128i(1);
assert_eq!(<[i64; 2]>::from(a), <[i64; 2]>::from(a));