[][src]Function safe_arch::intel::splat_i8_m128i

#[must_use]pub fn splat_i8_m128i(i: i8) -> m128i

Splats the i8 to all lanes of the m128i.

let a = m128i::from([1_i8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]);
let b = splat_i8_m128i(1);
assert_eq!(<[i8; 16]>::from(a), <[i8; 16]>::from(a));