Skip to content

Commit cd68d91

Browse files
committedFeb 3, 2025
Rename to {u,i}*::reinterpret_{signed,unsigned} from cast
The previous names did not communicate what happens to values of unsigned integers that do not fit into the target integer values. We're reinterpreting the bits as an unsigned integer, but "cast" does not say that. E.g. casting from integer to float does not reinterpret the bits, casting from `i8` to `i32` does not solely reinterpret the bits either, it sign-extends them. So "cast" doesn't tell me what happens.
1 parent a5db378 commit cd68d91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎library/core/src/num/int_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,13 @@ macro_rules! int_impl {
197197
///
198198
#[doc = concat!("let n = -1", stringify!($SelfT), ";")]
199199
///
200-
#[doc = concat!("assert_eq!(n.cast_unsigned(), ", stringify!($UnsignedT), "::MAX);")]
200+
#[doc = concat!("assert_eq!(n.reinterpret_unsigned(), ", stringify!($UnsignedT), "::MAX);")]
201201
/// ```
202202
#[unstable(feature = "integer_sign_cast", issue = "125882")]
203203
#[must_use = "this returns the result of the operation, \
204204
without modifying the original"]
205205
#[inline(always)]
206-
pub const fn cast_unsigned(self) -> $UnsignedT {
206+
pub const fn reinterpret_unsigned(self) -> $UnsignedT {
207207
self as $UnsignedT
208208
}
209209

‎library/core/src/num/uint_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ macro_rules! uint_impl {
227227
///
228228
#[doc = concat!("let n = ", stringify!($SelfT), "::MAX;")]
229229
///
230-
#[doc = concat!("assert_eq!(n.cast_signed(), -1", stringify!($SignedT), ");")]
230+
#[doc = concat!("assert_eq!(n.reinterpret_signed(), -1", stringify!($SignedT), ");")]
231231
/// ```
232232
#[unstable(feature = "integer_sign_cast", issue = "125882")]
233233
#[must_use = "this returns the result of the operation, \
234234
without modifying the original"]
235235
#[inline(always)]
236-
pub const fn cast_signed(self) -> $SignedT {
236+
pub const fn reinterpret_signed(self) -> $SignedT {
237237
self as $SignedT
238238
}
239239

0 commit comments

Comments
 (0)