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.
std::ascii::Char
MIN
MAX
1 parent 59ab218 commit 16b8f73Copy full SHA for 16b8f73
library/core/src/ascii/ascii_char.rs
@@ -445,6 +445,14 @@ pub enum AsciiChar {
445
}
446
447
impl AsciiChar {
448
+ /// The character with the lowest ASCII code.
449
+ #[unstable(feature = "ascii_char", issue = "110998")]
450
+ pub const MIN: Self = Self::Null;
451
+
452
+ /// The character with the highest ASCII code.
453
454
+ pub const MAX: Self = Self::Delete;
455
456
/// Creates an ASCII character from the byte `b`,
457
/// or returns `None` if it's too large.
458
#[unstable(feature = "ascii_char", issue = "110998")]
0 commit comments