(&mut self, rhs: Self)
| 1263 | |
| 1264 | #[inline] |
| 1265 | pub fn sub_assign_f32(&mut self, rhs: Self) -> &mut Self { |
| 1266 | simd_sub_assign(self.as_mut_slice(), rhs.as_slice()); |
| 1267 | self |
| 1268 | } |
| 1269 | |
| 1270 | #[inline] |
| 1271 | pub fn scale_fast(self, rhs: f32) -> Self { |
no test coverage detected