Skip to content
/ rust Public
forked from rust-lang/rust

Commit 3cbe03f

Browse files
authored
Rollup merge of rust-lang#137026 - GrigorenkoPV:integer_sign_cast, r=Noratrieb
Stabilize (and const-stabilize) `integer_sign_cast` Tracking issue: rust-lang#125882 Closes: rust-lang#125882 FCP completed: rust-lang#125882 (comment)
2 parents ecca7da + e8a4f9d commit 3cbe03f

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

library/core/src/num/int_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ macro_rules! int_impl {
193193
/// Basic usage:
194194
///
195195
/// ```
196-
/// #![feature(integer_sign_cast)]
197196
///
198197
#[doc = concat!("let n = -1", stringify!($SelfT), ";")]
199198
///
200199
#[doc = concat!("assert_eq!(n.cast_unsigned(), ", stringify!($UnsignedT), "::MAX);")]
201200
/// ```
202-
#[unstable(feature = "integer_sign_cast", issue = "125882")]
201+
#[stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
202+
#[rustc_const_stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
203203
#[must_use = "this returns the result of the operation, \
204204
without modifying the original"]
205205
#[inline(always)]

library/core/src/num/nonzero.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1633,14 +1633,14 @@ macro_rules! nonzero_integer_signedness_dependent_methods {
16331633
/// Basic usage:
16341634
///
16351635
/// ```
1636-
/// #![feature(integer_sign_cast)]
16371636
/// # use std::num::NonZero;
16381637
///
16391638
#[doc = concat!("let n = NonZero::<", stringify!($Int), ">::MAX;")]
16401639
///
16411640
#[doc = concat!("assert_eq!(n.cast_signed(), NonZero::new(-1", stringify!($Sint), ").unwrap());")]
16421641
/// ```
1643-
#[unstable(feature = "integer_sign_cast", issue = "125882")]
1642+
#[stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
1643+
#[rustc_const_stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
16441644
#[must_use = "this returns the result of the operation, \
16451645
without modifying the original"]
16461646
#[inline(always)]
@@ -2072,14 +2072,14 @@ macro_rules! nonzero_integer_signedness_dependent_methods {
20722072
/// Basic usage:
20732073
///
20742074
/// ```
2075-
/// #![feature(integer_sign_cast)]
20762075
/// # use std::num::NonZero;
20772076
///
20782077
#[doc = concat!("let n = NonZero::new(-1", stringify!($Int), ").unwrap();")]
20792078
///
20802079
#[doc = concat!("assert_eq!(n.cast_unsigned(), NonZero::<", stringify!($Uint), ">::MAX);")]
20812080
/// ```
2082-
#[unstable(feature = "integer_sign_cast", issue = "125882")]
2081+
#[stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
2082+
#[rustc_const_stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
20832083
#[must_use = "this returns the result of the operation, \
20842084
without modifying the original"]
20852085
#[inline(always)]

library/core/src/num/uint_macros.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -223,13 +223,12 @@ macro_rules! uint_impl {
223223
/// Basic usage:
224224
///
225225
/// ```
226-
/// #![feature(integer_sign_cast)]
227-
///
228226
#[doc = concat!("let n = ", stringify!($SelfT), "::MAX;")]
229227
///
230228
#[doc = concat!("assert_eq!(n.cast_signed(), -1", stringify!($SignedT), ");")]
231229
/// ```
232-
#[unstable(feature = "integer_sign_cast", issue = "125882")]
230+
#[stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
231+
#[rustc_const_stable(feature = "integer_sign_cast", since = "CURRENT_RUSTC_VERSION")]
233232
#[must_use = "this returns the result of the operation, \
234233
without modifying the original"]
235234
#[inline(always)]

0 commit comments

Comments
 (0)