Add associated consts MIN/MAX for Wrapping<Int>
This commit is contained in:
parent
b85e3fe010
commit
b2c44696ad
@ -337,14 +337,10 @@ Basic usage:
|
||||
#![feature(wrapping_int_impl)]
|
||||
use std::num::Wrapping;
|
||||
|
||||
assert_eq!(<Wrapping<", stringify!($t), ">>::min_value(), ",
|
||||
"Wrapping(", stringify!($t), "::min_value()));
|
||||
assert_eq!(<Wrapping<", stringify!($t), ">>::MIN, Wrapping(", stringify!($t), "::MIN));
|
||||
```"),
|
||||
#[unstable(feature = "wrapping_int_impl", issue = "32463")]
|
||||
#[inline]
|
||||
pub const fn min_value() -> Self {
|
||||
Wrapping(<$t>::min_value())
|
||||
}
|
||||
pub const MIN: Self = Self(<$t>::MIN);
|
||||
}
|
||||
|
||||
doc_comment! {
|
||||
@ -358,14 +354,10 @@ Basic usage:
|
||||
#![feature(wrapping_int_impl)]
|
||||
use std::num::Wrapping;
|
||||
|
||||
assert_eq!(<Wrapping<", stringify!($t), ">>::max_value(), ",
|
||||
"Wrapping(", stringify!($t), "::max_value()));
|
||||
assert_eq!(<Wrapping<", stringify!($t), ">>::MAX, Wrapping(", stringify!($t), "::MAX));
|
||||
```"),
|
||||
#[unstable(feature = "wrapping_int_impl", issue = "32463")]
|
||||
#[inline]
|
||||
pub const fn max_value() -> Self {
|
||||
Wrapping(<$t>::max_value())
|
||||
}
|
||||
pub const MAX: Self = Self(<$t>::MAX);
|
||||
}
|
||||
|
||||
doc_comment! {
|
||||
|
Loading…
Reference in New Issue
Block a user