Skip to content

Commit e9a489b

Browse files
committed
Auto merge of #50465 - clarcharr:wrapping, r=KodrAus
Add missing Wrapping methods, use doc_comment! Re-opened version of #49393 . Finishing touches for #32463. Note that this adds `Shl` and `Shr` implementations for `Wrapping<i128>` and `Wrapping<u128>`, which were previously missed. This is technically insta-stable, but I don't know why this would be a problem.
2 parents 5bf68db + 99cf5a9 commit e9a489b

File tree

2 files changed

+488
-199
lines changed

2 files changed

+488
-199
lines changed

src/libcore/num/mod.rs

+26-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,6 @@ impl<T: fmt::UpperHex> fmt::UpperHex for Wrapping<T> {
168168
}
169169
}
170170

171-
mod wrapping;
172-
173171
// All these modules are technically private and only exposed for coretests:
174172
pub mod flt2dec;
175173
pub mod dec2flt;
@@ -183,6 +181,8 @@ macro_rules! doc_comment {
183181
};
184182
}
185183

184+
mod wrapping;
185+
186186
// `Int` + `SignedInt` implemented for signed integers
187187
macro_rules! int_impl {
188188
($SelfT:ty, $ActualT:ident, $UnsignedT:ty, $BITS:expr, $Min:expr, $Max:expr, $Feature:expr,
@@ -3401,6 +3401,30 @@ $EndFeature, "
34013401
}
34023402
}
34033403

3404+
doc_comment! {
3405+
concat!("Returns the smallest power of two greater than or equal to `n`. If
3406+
the next power of two is greater than the type's maximum value,
3407+
the return value is wrapped to `0`.
3408+
3409+
# Examples
3410+
3411+
Basic usage:
3412+
3413+
```
3414+
#![feature(wrapping_next_power_of_two)]
3415+
", $Feature, "
3416+
assert_eq!(2", stringify!($SelfT), ".wrapping_next_power_of_two(), 2);
3417+
assert_eq!(3", stringify!($SelfT), ".wrapping_next_power_of_two(), 4);
3418+
assert_eq!(", stringify!($SelfT), "::max_value().wrapping_next_power_of_two(), 0);",
3419+
$EndFeature, "
3420+
```"),
3421+
#[unstable(feature = "wrapping_next_power_of_two", issue = "32463",
3422+
reason = "needs decision on wrapping behaviour")]
3423+
pub fn wrapping_next_power_of_two(self) -> Self {
3424+
self.one_less_than_next_power_of_two().wrapping_add(1)
3425+
}
3426+
}
3427+
34043428
/// Return the memory representation of this integer as a byte array.
34053429
///
34063430
/// The target platform’s native endianness is used.

0 commit comments

Comments
 (0)