(self)
| 331 | /// Computes the absolute value of this i256 returning `None` if `Self == Self::MIN` |
| 332 | #[inline] |
| 333 | pub fn checked_abs(self) -> Option<Self> { |
| 334 | (self != Self::MIN).then(|| self.wrapping_abs()) |
| 335 | } |
| 336 | |
| 337 | /// Negates this i256 |
| 338 | #[inline] |
nothing calls this directly
no test coverage detected