tmp/tmpt176kv83/{from.md → to.md}
RENAMED
|
@@ -1,26 +1,11 @@
|
|
| 1 |
## General <a id="strings.general">[[strings.general]]</a>
|
| 2 |
|
| 3 |
This Clause describes components for manipulating sequences of any
|
| 4 |
-
non-array
|
| 5 |
-
types*, and objects of char-like types are called
|
| 6 |
-
simply *characters*.
|
| 7 |
-
|
| 8 |
-
The following subclauses describe a character traits class, a string
|
| 9 |
-
class, and null-terminated sequence utilities, as summarized in Table
|
| 10 |
-
[[tab:strings.lib.summary]].
|
| 11 |
-
|
| 12 |
-
**Table: Strings library summary** <a id="tab:strings.lib.summary">[tab:strings.lib.summary]</a>
|
| 13 |
-
|
| 14 |
-
| Subclause | | Header |
|
| 15 |
-
| ------------------ | ---------------------------------- | --------------- |
|
| 16 |
-
| [[char.traits]] | Character traits | `<string>` |
|
| 17 |
-
| [[string.classes]] | String classes | `<string>` |
|
| 18 |
-
| [[string.view]] | String view classes | `<string_view>` |
|
| 19 |
-
| | | `<cctype>` |
|
| 20 |
-
| | | `<cwctype>` |
|
| 21 |
-
| [[c.strings]] | Null-terminated sequence utilities | `<cstring>` |
|
| 22 |
-
| | | `<cwchar>` |
|
| 23 |
-
| | | `<cstdlib>` |
|
| 24 |
-
| | | `<cuchar>` |
|
| 25 |
|
|
|
|
|
|
|
|
|
|
| 26 |
|
|
|
|
| 1 |
## General <a id="strings.general">[[strings.general]]</a>
|
| 2 |
|
| 3 |
This Clause describes components for manipulating sequences of any
|
| 4 |
+
non-array trivial standard-layout [[basic.types]] type. Such types are
|
| 5 |
+
called *char-like types*, and objects of char-like types are called
|
| 6 |
+
*char-like objects* or simply *characters*.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
The following subclauses describe a character traits class, string
|
| 9 |
+
classes, and null-terminated sequence utilities, as summarized in
|
| 10 |
+
[[strings.summary]].
|
| 11 |
|