@@ -1080,6 +1080,36 @@ macro_rules! int_impl {
1080
1080
}
1081
1081
}
1082
1082
1083
+ /// Unchecked integer remainder. Computes `self % rhs`, assuming `rhs != 0`
1084
+ /// and overflow cannot occur.
1085
+ ///
1086
+ /// # Safety
1087
+ ///
1088
+ /// This results in undefined behavior when `rhs == 0` or
1089
+ #[ doc = concat!( "(`self ==" , stringify!( $SelfT) , "::MIN` and `rhs == -1`)," ) ]
1090
+ /// i.e. when [`checked_rem`] would return `None`.
1091
+ ///
1092
+ #[ doc = concat!( "[`checked_rem`]: " , stringify!( $SelfT) , "::checked_rem" ) ]
1093
+ #[ unstable( feature = "unchecked_div_rem" , issue = "136716" ) ]
1094
+ #[ must_use = "this returns the result of the operation, \
1095
+ without modifying the original"]
1096
+ #[ cfg_attr( miri, track_caller) ] // even without panics, this helps for Miri backtraces
1097
+ pub const unsafe fn unchecked_rem( self , rhs: Self ) -> Self {
1098
+ assert_unsafe_precondition!(
1099
+ check_language_ub,
1100
+ concat!( stringify!( $SelfT) , "::unchecked_rem cannot overflow or divide by zero" ) ,
1101
+ (
1102
+ lhs: $SelfT = self ,
1103
+ rhs: $SelfT = rhs
1104
+ ) => rhs != 0 && !lhs. overflowing_rem( rhs) . 1 ,
1105
+ ) ;
1106
+
1107
+ // SAFETY: this is guaranteed to be safe by the caller.
1108
+ unsafe {
1109
+ intrinsics:: unchecked_rem( self , rhs)
1110
+ }
1111
+ }
1112
+
1083
1113
/// Strict integer remainder. Computes `self % rhs`, panicking if
1084
1114
/// the division results in overflow.
1085
1115
///
0 commit comments