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