Update since
to 1.64 (since we're after 1.63)
This commit is contained in:
parent
69e8e7e73b
commit
2339bb20a6
@ -330,8 +330,8 @@ impl $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -365,8 +365,8 @@ pub const fn checked_add(self, other: $Int) -> Option<$Ty> {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -431,8 +431,8 @@ pub const fn saturating_add(self, other: $Int) -> $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -533,8 +533,8 @@ impl $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -565,8 +565,8 @@ pub const fn abs(self) -> $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -601,8 +601,8 @@ pub const fn checked_abs(self) -> Option<$Ty> {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -641,8 +641,8 @@ pub const fn overflowing_abs(self) -> ($Ty, bool) {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -676,8 +676,8 @@ pub const fn saturating_abs(self) -> $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -711,8 +711,8 @@ pub const fn wrapping_abs(self) -> $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -760,8 +760,8 @@ impl $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -796,8 +796,8 @@ pub const fn checked_mul(self, other: $Ty) -> Option<$Ty> {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -869,8 +869,8 @@ pub const fn saturating_mul(self, other: $Ty) -> $Ty {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
@ -913,8 +913,8 @@ pub const fn checked_pow(self, other: u32) -> Option<$Ty> {
|
||||
/// # Some(())
|
||||
/// # }
|
||||
/// ```
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.63.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.63.0")]
|
||||
#[stable(feature = "nonzero_checked_ops", since = "1.64.0")]
|
||||
#[rustc_const_stable(feature = "const_nonzero_checked_ops", since = "1.64.0")]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
without modifying the original"]
|
||||
#[inline]
|
||||
|
Loading…
Reference in New Issue
Block a user