Skip to content

Commit f3ea8f3

Browse files
committed
Auto merge of #105671 - lukas-code:depreciate-char, r=scottmcm
Use associated items of `char` instead of freestanding items in `core::char` The associated functions and constants on `char` have been stable since 1.52 and the freestanding items have soft-deprecated since 1.62 (rust-lang/rust#95566). This PR ~~marks them as "deprecated in future", similar to the integer and floating point modules (`core::{i32, f32}` etc)~~ replaces all uses of `core::char::*` with `char::*` to prepare for future deprecation of `core::char::*`.
2 parents 11ddd7c + be98dbe commit f3ea8f3

File tree

10 files changed

+20
-42
lines changed

10 files changed

+20
-42
lines changed

alloc/src/string.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
4343
#![stable(feature = "rust1", since = "1.0.0")]
4444

45-
#[cfg(not(no_global_oom_handling))]
46-
use core::char::{decode_utf16, REPLACEMENT_CHARACTER};
4745
use core::error::Error;
4846
use core::fmt;
4947
use core::hash;
@@ -683,7 +681,7 @@ impl String {
683681
// This isn't done via collect::<Result<_, _>>() for performance reasons.
684682
// FIXME: the function can be simplified again when #48994 is closed.
685683
let mut ret = String::with_capacity(v.len());
686-
for c in decode_utf16(v.iter().cloned()) {
684+
for c in char::decode_utf16(v.iter().cloned()) {
687685
if let Ok(c) = c {
688686
ret.push(c);
689687
} else {
@@ -722,7 +720,9 @@ impl String {
722720
#[inline]
723721
#[stable(feature = "rust1", since = "1.0.0")]
724722
pub fn from_utf16_lossy(v: &[u16]) -> String {
725-
decode_utf16(v.iter().cloned()).map(|r| r.unwrap_or(REPLACEMENT_CHARACTER)).collect()
723+
char::decode_utf16(v.iter().cloned())
724+
.map(|r| r.unwrap_or(char::REPLACEMENT_CHARACTER))
725+
.collect()
726726
}
727727

728728
/// Decomposes a `String` into its raw components.

core/src/char/decode.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
use crate::error::Error;
44
use crate::fmt;
55

6-
use super::from_u32_unchecked;
7-
86
/// An iterator that decodes UTF-16 encoded code points from an iterator of `u16`s.
97
///
108
/// This `struct` is created by the [`decode_utf16`] method on [`char`]. See its
@@ -49,7 +47,7 @@ impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> {
4947

5048
if !u.is_utf16_surrogate() {
5149
// SAFETY: not a surrogate
52-
Some(Ok(unsafe { from_u32_unchecked(u as u32) }))
50+
Some(Ok(unsafe { char::from_u32_unchecked(u as u32) }))
5351
} else if u >= 0xDC00 {
5452
// a trailing surrogate
5553
Some(Err(DecodeUtf16Error { code: u }))
@@ -69,7 +67,7 @@ impl<I: Iterator<Item = u16>> Iterator for DecodeUtf16<I> {
6967
// all ok, so lets decode it.
7068
let c = (((u & 0x3ff) as u32) << 10 | (u2 & 0x3ff) as u32) + 0x1_0000;
7169
// SAFETY: we checked that it's a legal unicode value
72-
Some(Ok(unsafe { from_u32_unchecked(c) }))
70+
Some(Ok(unsafe { char::from_u32_unchecked(c) }))
7371
}
7472
}
7573

core/src/char/methods.rs

+4-20
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,13 @@ impl char {
5353
/// Basic usage:
5454
///
5555
/// ```
56-
/// use std::char::decode_utf16;
57-
///
5856
/// // 𝄞mus<invalid>ic<invalid>
5957
/// let v = [
6058
/// 0xD834, 0xDD1E, 0x006d, 0x0075, 0x0073, 0xDD1E, 0x0069, 0x0063, 0xD834,
6159
/// ];
6260
///
6361
/// assert_eq!(
64-
/// decode_utf16(v)
62+
/// char::decode_utf16(v)
6563
/// .map(|r| r.map_err(|e| e.unpaired_surrogate()))
6664
/// .collect::<Vec<_>>(),
6765
/// vec![
@@ -77,16 +75,14 @@ impl char {
7775
/// A lossy decoder can be obtained by replacing `Err` results with the replacement character:
7876
///
7977
/// ```
80-
/// use std::char::{decode_utf16, REPLACEMENT_CHARACTER};
81-
///
8278
/// // 𝄞mus<invalid>ic<invalid>
8379
/// let v = [
8480
/// 0xD834, 0xDD1E, 0x006d, 0x0075, 0x0073, 0xDD1E, 0x0069, 0x0063, 0xD834,
8581
/// ];
8682
///
8783
/// assert_eq!(
88-
/// decode_utf16(v)
89-
/// .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))
84+
/// char::decode_utf16(v)
85+
/// .map(|r| r.unwrap_or(char::REPLACEMENT_CHARACTER))
9086
/// .collect::<String>(),
9187
/// "𝄞mus�ic�"
9288
/// );
@@ -123,8 +119,6 @@ impl char {
123119
/// Basic usage:
124120
///
125121
/// ```
126-
/// use std::char;
127-
///
128122
/// let c = char::from_u32(0x2764);
129123
///
130124
/// assert_eq!(Some('❤'), c);
@@ -133,8 +127,6 @@ impl char {
133127
/// Returning `None` when the input is not a valid `char`:
134128
///
135129
/// ```
136-
/// use std::char;
137-
///
138130
/// let c = char::from_u32(0x110000);
139131
///
140132
/// assert_eq!(None, c);
@@ -176,8 +168,6 @@ impl char {
176168
/// Basic usage:
177169
///
178170
/// ```
179-
/// use std::char;
180-
///
181171
/// let c = unsafe { char::from_u32_unchecked(0x2764) };
182172
///
183173
/// assert_eq!('❤', c);
@@ -210,8 +200,6 @@ impl char {
210200
/// Basic usage:
211201
///
212202
/// ```
213-
/// use std::char;
214-
///
215203
/// let c = char::from_digit(4, 10);
216204
///
217205
/// assert_eq!(Some('4'), c);
@@ -225,8 +213,6 @@ impl char {
225213
/// Returning `None` when the input is not a digit:
226214
///
227215
/// ```
228-
/// use std::char;
229-
///
230216
/// let c = char::from_digit(20, 10);
231217
///
232218
/// assert_eq!(None, c);
@@ -235,8 +221,6 @@ impl char {
235221
/// Passing a large radix, causing a panic:
236222
///
237223
/// ```should_panic
238-
/// use std::char;
239-
///
240224
/// // this panics
241225
/// let _c = char::from_digit(1, 37);
242226
/// ```
@@ -1786,7 +1770,7 @@ pub fn encode_utf16_raw(mut code: u32, dst: &mut [u16]) -> &mut [u16] {
17861770
} else {
17871771
panic!(
17881772
"encode_utf16: need {} units to encode U+{:X}, but the buffer has {}",
1789-
from_u32_unchecked(code).len_utf16(),
1773+
char::from_u32_unchecked(code).len_utf16(),
17901774
code,
17911775
dst.len(),
17921776
)

core/src/char/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ impl Iterator for EscapeUnicode {
189189
}
190190
EscapeUnicodeState::Value => {
191191
let hex_digit = ((self.c as u32) >> (self.hex_digit_idx * 4)) & 0xf;
192-
let c = from_digit(hex_digit, 16).unwrap();
192+
let c = char::from_digit(hex_digit, 16).unwrap();
193193
if self.hex_digit_idx == 0 {
194194
self.state = EscapeUnicodeState::RightBrace;
195195
} else {

core/src/iter/range.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::char;
21
use crate::convert::TryFrom;
32
use crate::mem;
43
use crate::ops::{self, Try};

core/src/str/iter.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Iterators for `str` methods.
22
3-
use crate::char;
3+
use crate::char as char_mod;
44
use crate::fmt::{self, Write};
55
use crate::iter::{Chain, FlatMap, Flatten};
66
use crate::iter::{Copied, Filter, FusedIterator, Map, TrustedLen};
@@ -1455,23 +1455,23 @@ impl FusedIterator for EncodeUtf16<'_> {}
14551455
#[derive(Clone, Debug)]
14561456
pub struct EscapeDebug<'a> {
14571457
pub(super) inner: Chain<
1458-
Flatten<option::IntoIter<char::EscapeDebug>>,
1459-
FlatMap<Chars<'a>, char::EscapeDebug, CharEscapeDebugContinue>,
1458+
Flatten<option::IntoIter<char_mod::EscapeDebug>>,
1459+
FlatMap<Chars<'a>, char_mod::EscapeDebug, CharEscapeDebugContinue>,
14601460
>,
14611461
}
14621462

14631463
/// The return type of [`str::escape_default`].
14641464
#[stable(feature = "str_escape", since = "1.34.0")]
14651465
#[derive(Clone, Debug)]
14661466
pub struct EscapeDefault<'a> {
1467-
pub(super) inner: FlatMap<Chars<'a>, char::EscapeDefault, CharEscapeDefault>,
1467+
pub(super) inner: FlatMap<Chars<'a>, char_mod::EscapeDefault, CharEscapeDefault>,
14681468
}
14691469

14701470
/// The return type of [`str::escape_unicode`].
14711471
#[stable(feature = "str_escape", since = "1.34.0")]
14721472
#[derive(Clone, Debug)]
14731473
pub struct EscapeUnicode<'a> {
1474-
pub(super) inner: FlatMap<Chars<'a>, char::EscapeUnicode, CharEscapeUnicode>,
1474+
pub(super) inner: FlatMap<Chars<'a>, char_mod::EscapeUnicode, CharEscapeUnicode>,
14751475
}
14761476

14771477
macro_rules! escape_types_impls {

core/tests/iter/range.rs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ fn test_range() {
2626

2727
#[test]
2828
fn test_char_range() {
29-
use std::char;
3029
// Miri is too slow
3130
let from = if cfg!(miri) { char::from_u32(0xD800 - 10).unwrap() } else { '\0' };
3231
let to = if cfg!(miri) { char::from_u32(0xDFFF + 10).unwrap() } else { char::MAX };

proc_macro/src/bridge/rpc.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! Serialization for client-server communication.
22
33
use std::any::Any;
4-
use std::char;
54
use std::io::Write;
65
use std::num::NonZeroU32;
76
use std::str;

std/src/sys/windows/stdio.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![unstable(issue = "none", feature = "windows_stdio")]
22

3-
use crate::char::decode_utf16;
43
use crate::cmp;
54
use crate::io;
65
use crate::mem::MaybeUninit;
@@ -369,7 +368,7 @@ fn read_u16s(handle: c::HANDLE, buf: &mut [MaybeUninit<u16>]) -> io::Result<usiz
369368
#[allow(unused)]
370369
fn utf16_to_utf8(utf16: &[u16], utf8: &mut [u8]) -> io::Result<usize> {
371370
let mut written = 0;
372-
for chr in decode_utf16(utf16.iter().cloned()) {
371+
for chr in char::decode_utf16(utf16.iter().cloned()) {
373372
match chr {
374373
Ok(chr) => {
375374
chr.encode_utf8(&mut utf8[written..]);

std/src/sys_common/wtf8.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
#[cfg(test)]
1919
mod tests;
2020

21+
use core::char::{encode_utf16_raw, encode_utf8_raw};
2122
use core::str::next_code_point;
2223

2324
use crate::borrow::Cow;
24-
use crate::char;
2525
use crate::collections::TryReserveError;
2626
use crate::fmt;
2727
use crate::hash::{Hash, Hasher};
@@ -235,7 +235,7 @@ impl Wtf8Buf {
235235
/// This does **not** include the WTF-8 concatenation check or `is_known_utf8` check.
236236
fn push_code_point_unchecked(&mut self, code_point: CodePoint) {
237237
let mut bytes = [0; 4];
238-
let bytes = char::encode_utf8_raw(code_point.value, &mut bytes);
238+
let bytes = encode_utf8_raw(code_point.value, &mut bytes);
239239
self.bytes.extend_from_slice(bytes)
240240
}
241241

@@ -939,7 +939,7 @@ impl<'a> Iterator for EncodeWide<'a> {
939939

940940
let mut buf = [0; 2];
941941
self.code_points.next().map(|code_point| {
942-
let n = char::encode_utf16_raw(code_point.value, &mut buf).len();
942+
let n = encode_utf16_raw(code_point.value, &mut buf).len();
943943
if n == 2 {
944944
self.extra = buf[1];
945945
}

0 commit comments

Comments
 (0)