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 d8fb322 commit a5d775dCopy full SHA for a5d775d
src/libstd/ascii.rs
@@ -9,6 +9,20 @@
9
// except according to those terms.
10
11
//! Operations on ASCII strings and characters.
12
+//!
13
+//! Most string operations in Rust act on UTF-8 strings. However, at times it
14
+//! makes more sense to only consider the ASCII character set for a specific
15
+//! operation.
16
17
+//! The [`AsciiExt`] trait provides methods that allow for character
18
+//! operations that only act on the ASCII subset and leave non-ASCII characters
19
+//! alone.
20
21
+//! The [`escape_default`] function provides an iterator over the bytes of an
22
+//! escaped version of the character given.
23
24
+//! [`AsciiExt`]: trait.AsciiExt.html
25
+//! [`escape_default`]: fn.escape_default.html
26
27
#![stable(feature = "rust1", since = "1.0.0")]
28
0 commit comments