@@ -743,7 +743,7 @@ macro_rules! nonzero_signed_operations {
743
743
/// ```
744
744
#[ must_use]
745
745
#[ inline( always) ]
746
- #[ unstable( feature = "nonzero_negation_ops" , issue = "none " ) ]
746
+ #[ unstable( feature = "nonzero_negation_ops" , issue = "102443 " ) ]
747
747
pub const fn is_negative( self ) -> bool {
748
748
self . get( ) . is_negative( )
749
749
}
@@ -769,7 +769,7 @@ macro_rules! nonzero_signed_operations {
769
769
/// # }
770
770
/// ```
771
771
#[ inline]
772
- #[ unstable( feature = "nonzero_negation_ops" , issue = "none " ) ]
772
+ #[ unstable( feature = "nonzero_negation_ops" , issue = "102443 " ) ]
773
773
pub const fn checked_neg( self ) -> Option <$Ty> {
774
774
if let Some ( result) = self . get( ) . checked_neg( ) {
775
775
// SAFETY: negation of nonzero cannot yield zero values.
@@ -802,7 +802,7 @@ macro_rules! nonzero_signed_operations {
802
802
/// # }
803
803
/// ```
804
804
#[ inline]
805
- #[ unstable( feature = "nonzero_negation_ops" , issue = "none " ) ]
805
+ #[ unstable( feature = "nonzero_negation_ops" , issue = "102443 " ) ]
806
806
pub const fn overflowing_neg( self ) -> ( $Ty, bool ) {
807
807
let ( result, overflow) = self . get( ) . overflowing_neg( ) ;
808
808
// SAFETY: negation of nonzero cannot yield zero values.
@@ -836,7 +836,7 @@ macro_rules! nonzero_signed_operations {
836
836
/// # }
837
837
/// ```
838
838
#[ inline]
839
- #[ unstable( feature = "nonzero_negation_ops" , issue = "none " ) ]
839
+ #[ unstable( feature = "nonzero_negation_ops" , issue = "102443 " ) ]
840
840
pub const fn saturating_neg( self ) -> $Ty {
841
841
if let Some ( result) = self . checked_neg( ) {
842
842
return result;
@@ -869,7 +869,7 @@ macro_rules! nonzero_signed_operations {
869
869
/// # }
870
870
/// ```
871
871
#[ inline]
872
- #[ unstable( feature = "nonzero_negation_ops" , issue = "none " ) ]
872
+ #[ unstable( feature = "nonzero_negation_ops" , issue = "102443 " ) ]
873
873
pub const fn wrapping_neg( self ) -> $Ty {
874
874
let result = self . get( ) . wrapping_neg( ) ;
875
875
// SAFETY: negation of nonzero cannot yield zero values.
0 commit comments