Skip to content

Commit 0878b5e

Browse files
added unchecked_rem for signed and unsigned types
1 parent 7732367 commit 0878b5e

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

library/core/src/num/int_macros.rs

+30
Original file line numberDiff line numberDiff line change
@@ -1080,6 +1080,36 @@ macro_rules! int_impl {
10801080
}
10811081
}
10821082

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+
10831113
/// Strict integer remainder. Computes `self % rhs`, panicking if
10841114
/// the division results in overflow.
10851115
///

library/core/src/num/uint_macros.rs

+27
Original file line numberDiff line numberDiff line change
@@ -1169,6 +1169,33 @@ macro_rules! uint_impl {
11691169
}
11701170
}
11711171

1172+
/// Unchecked integer remainder. Computes `self % rhs`, assuming `rhs` is not zero.
1173+
///
1174+
/// # Safety
1175+
///
1176+
/// This results in undefined behavior when `rhs == 0`
1177+
/// i.e. when [`checked_rem`] would return `None`.
1178+
///
1179+
#[doc = concat!("[`checked_rem`]: ", stringify!($SelfT), "::checked_rem")]
1180+
#[unstable(feature = "unchecked_div_rem", issue = "136716")]
1181+
#[must_use = "this returns the result of the operation, \
1182+
without modifying the original"]
1183+
#[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
1184+
pub const unsafe fn unchecked_rem(self, rhs: Self) -> Self {
1185+
assert_unsafe_precondition!(
1186+
check_language_ub,
1187+
concat!(stringify!($SelfT), "::unchecked_rem cannot divide by zero"),
1188+
(
1189+
rhs: $SelfT = rhs
1190+
) => rhs != 0,
1191+
);
1192+
1193+
// SAFETY: this is guaranteed to be safe by the caller.
1194+
unsafe {
1195+
intrinsics::unchecked_rem(self, rhs)
1196+
}
1197+
}
1198+
11721199
/// Strict integer remainder. Computes `self % rhs`.
11731200
///
11741201
/// Strict remainder calculation on unsigned types is just the regular

0 commit comments

Comments
 (0)