(self, rhs: Self)
| 1238 | |
| 1239 | #[inline] |
| 1240 | pub fn add_f32(self, rhs: Self) -> Self { |
| 1241 | let mut out = self; |
| 1242 | out.add_assign_f32(rhs); |
| 1243 | out |
| 1244 | } |
| 1245 | |
| 1246 | #[inline] |
| 1247 | pub fn add_assign_f32(&mut self, rhs: Self) -> &mut Self { |
no test coverage detected