(self, other: Self)
| 364 | /// Performs wrapping subtraction |
| 365 | #[inline] |
| 366 | pub fn wrapping_sub(self, other: Self) -> Self { |
| 367 | let (low, carry) = self.low.overflowing_sub(other.low); |
| 368 | let high = self.high.wrapping_sub(other.high).wrapping_sub(carry as _); |
| 369 | Self { low, high } |
| 370 | } |
| 371 | |
| 372 | /// Performs checked subtraction |
| 373 | #[inline] |
no outgoing calls