We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebcb99e commit 14b50edCopy full SHA for 14b50ed
library/core/src/char/convert.rs
@@ -23,9 +23,6 @@ use super::MAX;
23
/// [`char`]s. `from_u32()` will return `None` if the input is not a valid value
24
/// for a [`char`].
25
///
26
-/// [`char`]: crate::char
27
-/// [`u32`]: crate::u32
28
-///
29
/// For an unsafe version of this function which ignores these checks, see
30
/// [`from_u32_unchecked`].
31
@@ -72,9 +69,6 @@ pub fn from_u32(i: u32) -> Option<char> {
72
69
/// [`char`]s. `from_u32_unchecked()` will ignore this, and blindly cast to
73
70
/// [`char`], possibly creating an invalid one.
74
71
75
76
77
78
/// # Safety
79
80
/// This function is unsafe, as it may construct invalid `char` values.
0 commit comments