Open
Description
Feature gate: #![feature(unsigned_signed_diff)]
This is a tracking issue for rust-lang/libs-team#381
Public API
impl uX {
pub const fn overflowing_signed_diff(self, rhs: Self) -> (iX, bool);
pub const fn saturating_signed_diff(self, rhs: Self) -> iX;
pub const fn checked_signed_diff(self, rhs: Self) -> Option<iX>;
}
Steps / History
- Implementation: Implement
unsigned_signed_diff
#126042 - Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.