(&mut self, value: &Self, condition: Condition)
| 12 | { |
| 13 | #[inline] |
| 14 | fn cmovnz(&mut self, value: &Self, condition: Condition) { |
| 15 | self.as_mut_slice().cmovnz(value, condition); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | // Optimized implementation for arrays which coalesces them into word-sized chunks first, |
nothing calls this directly
no outgoing calls
no test coverage detected