(&mut self, rhs: Self)
| 1245 | |
| 1246 | #[inline] |
| 1247 | pub fn add_assign_f32(&mut self, rhs: Self) -> &mut Self { |
| 1248 | simd_add_assign(self.as_mut_slice(), rhs.as_slice()); |
| 1249 | self |
| 1250 | } |
| 1251 | |
| 1252 | #[inline] |
| 1253 | pub fn sub_fast(self, rhs: Self) -> Self { |
no test coverage detected