(self, rhs: Self)
| 1256 | |
| 1257 | #[inline] |
| 1258 | pub fn sub_f32(self, rhs: Self) -> Self { |
| 1259 | let mut out = self; |
| 1260 | out.sub_assign_f32(rhs); |
| 1261 | out |
| 1262 | } |
| 1263 | |
| 1264 | #[inline] |
| 1265 | pub fn sub_assign_f32(&mut self, rhs: Self) -> &mut Self { |
no test coverage detected