Skip to content

Commit 6101316

Browse files
authored
Unrolled build for rust-lang#124701
Rollup merge of rust-lang#124701 - scottmcm:unchecked_sub_docs, r=Nilstrieb Docs: suggest `uN::checked_sub` instead of check-then-unchecked As of rust-lang#124114 it's exactly the same in codegen, so might as well not use `unsafe`. Note that this is only for *unsigned*, since the overflow conditions for `iN::checked_sub` are more complicated.
2 parents 7dd170f + e1c833e commit 6101316

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

library/core/src/num/uint_macros.rs

+25
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,31 @@ macro_rules! uint_impl {
636636
/// If you're just trying to avoid the panic in debug mode, then **do not**
637637
/// use this. Instead, you're looking for [`wrapping_sub`].
638638
///
639+
/// If you find yourself writing code like this:
640+
///
641+
/// ```
642+
/// # let foo = 30_u32;
643+
/// # let bar = 20;
644+
/// if foo >= bar {
645+
/// // SAFETY: just checked it will not overflow
646+
/// let diff = unsafe { foo.unchecked_sub(bar) };
647+
/// // ... use diff ...
648+
/// }
649+
/// ```
650+
///
651+
/// Consider changing it to
652+
///
653+
/// ```
654+
/// # let foo = 30_u32;
655+
/// # let bar = 20;
656+
/// if let Some(diff) = foo.checked_sub(bar) {
657+
/// // ... use diff ...
658+
/// }
659+
/// ```
660+
///
661+
/// As that does exactly the same thing -- including telling the optimizer
662+
/// that the subtraction cannot overflow -- but avoids needing `unsafe`.
663+
///
639664
/// # Safety
640665
///
641666
/// This results in undefined behavior when

0 commit comments

Comments
 (0)