Added tracking issue numbers for int_abs_diff.
This commit is contained in:
parent
77e7f8ae88
commit
6dd6e7c002
@ -2244,7 +2244,7 @@ pub const fn abs(self) -> Self {
|
||||
#[doc = concat!("assert_eq!((-100", stringify!($SelfT), ").abs_diff(-120), 20", stringify!($UnsignedT), ");")]
|
||||
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::MIN.abs_diff(", stringify!($SelfT), "::MAX), ", stringify!($UnsignedT), "::MAX);")]
|
||||
/// ```
|
||||
#[unstable(feature = "int_abs_diff", issue = "none")]
|
||||
#[unstable(feature = "int_abs_diff", issue = "89492")]
|
||||
#[inline]
|
||||
pub const fn abs_diff(self, other: Self) -> $UnsignedT {
|
||||
if self < other {
|
||||
|
@ -1501,7 +1501,7 @@ pub const fn borrowing_sub(self, rhs: Self, borrow: bool) -> (Self, bool) {
|
||||
#[doc = concat!("assert_eq!(100", stringify!($SelfT), ".abs_diff(80), 20", stringify!($SelfT), ");")]
|
||||
#[doc = concat!("assert_eq!(100", stringify!($SelfT), ".abs_diff(110), 10", stringify!($SelfT), ");")]
|
||||
/// ```
|
||||
#[unstable(feature = "int_abs_diff", issue = "none")]
|
||||
#[unstable(feature = "int_abs_diff", issue = "89492")]
|
||||
#[inline]
|
||||
pub const fn abs_diff(self, other: Self) -> Self {
|
||||
if mem::size_of::<Self>() == 1 {
|
||||
|
Loading…
Reference in New Issue
Block a user