Function safe_arch::move_mask_m128d
source · pub fn move_mask_m128d(a: m128d) -> i32
Expand description
Gathers the sign bit of each lane.
The output has lane 0 as bit 0, lane 1 as bit 1.
let a = m128d::from_array([-1.0, 12.0]);
let i = move_mask_m128d(a);
assert_eq!(i, 0b01);