Feature gate: #![feature(mixed_integer_ops_unsigned_sub)]
This is a tracking issue for rust-lang/libs-team#386
Public API
impl uX { pub const fn checked_sub_signed(self, iX) -> Option<Self>; pub const fn overflowing_sub_signed(self, iX) -> (Self, bool); pub const fn saturating_sub_signed(self, iX) -> Self; pub const fn wrapping_sub_signed(self, iX) -> Self; }
Steps / History
- ACP: mixed_integer_ops extension libs-team#386
- Implementation: Implement
mixed_integer_ops_unsigned_sub#126046 - Final comment period (FCP)1
- Stabilization PR Stabilize
mixed_integer_ops_unsigned_sub#143236
Unresolved Questions
- None yet.