Function safe_arch::set_i16_m128i [−][src]
Expand description
Sets the args into an m128i
, first arg is the high lane.
let a = m128i::from([7_i16, 6, 5, 4, 3, 2, 1, 0]);
let b = set_i16_m128i(0_i16, 1, 2, 3, 4, 5, 6, 7);
assert_eq!(<[i16; 8]>::from(a), <[i16; 8]>::from(b));