|
32 | 32 | \ref{mem} & Memory management library \\
|
33 | 33 | \ref{meta} & Metaprogramming library \\
|
34 | 34 | \ref{utilities} & General utilities library \\
|
35 |
| -\ref{strings} & Strings library \\ |
36 | 35 | \ref{containers} & Containers library \\
|
37 | 36 | \ref{iterators} & Iterators library \\
|
38 | 37 | \ref{ranges} & Ranges library \\
|
39 | 38 | \ref{algorithms} & Algorithms library \\
|
| 39 | +\ref{strings} & Strings library \\ |
| 40 | +\ref{text} & Text processing library \\ |
40 | 41 | \ref{numerics} & Numerics library \\
|
41 | 42 | \ref{time} & Time library \\
|
42 |
| -\ref{localization} & Localization library \\ |
43 | 43 | \ref{input.output} & Input/output library \\
|
44 |
| -\ref{re} & Regular expressions library \\ |
45 | 44 | \ref{thread} & Concurrency support library \\
|
46 | 45 | \ref{exec} & Execution control library \\
|
47 | 46 | \end{floattable}
|
|
83 | 82 | such as tuples and function wrappers.
|
84 | 83 |
|
85 | 84 | \pnum
|
86 |
| -The strings library\iref{strings} provides support for manipulating text represented |
87 |
| -as sequences of type \tcode{char}, |
| 85 | +The containers\iref{containers}, iterators\iref{iterators}, ranges\iref{ranges}, |
| 86 | +and algorithms\iref{algorithms} libraries provide a \Cpp{} program with access |
| 87 | +to a subset of the most widely used algorithms and data structures. |
| 88 | + |
| 89 | +\pnum |
| 90 | +The strings library\iref{strings} provides support |
| 91 | +for manipulating sequences of type \tcode{char}, |
88 | 92 | sequences of type \keyword{char8_t},
|
89 | 93 | sequences of type \keyword{char16_t},
|
90 | 94 | sequences of type \keyword{char32_t},
|
91 | 95 | sequences of type \keyword{wchar_t},
|
92 | 96 | and sequences of any other character-like type.
|
93 | 97 |
|
94 | 98 | \pnum
|
95 |
| -The containers\iref{containers}, iterators\iref{iterators}, ranges\iref{ranges}, |
96 |
| -and algorithms\iref{algorithms} libraries provide a \Cpp{} program with access |
97 |
| -to a subset of the most widely used algorithms and data structures. |
| 99 | +The text processing library\iref{text} provides support for text processing, |
| 100 | +including formatting, internationalization support and |
| 101 | +regular expression matching and searching. |
98 | 102 |
|
99 | 103 | \pnum
|
100 | 104 | The numerics library\iref{numerics} provides
|
|
111 | 115 | The time library\iref{time} provides
|
112 | 116 | generally useful time utilities.
|
113 | 117 |
|
114 |
| -\pnum |
115 |
| -The localization library\iref{localization} provides extended internationalization |
116 |
| -support for text processing. |
117 |
| - |
118 | 118 | \pnum
|
119 | 119 | The input/output library\iref{input.output} provides the
|
120 | 120 | \tcode{iostream}
|
121 | 121 | components that are the primary mechanism for \Cpp{} program input and output.
|
122 | 122 | They can be used with other elements of the library, particularly
|
123 | 123 | strings, locales, and iterators.
|
124 | 124 |
|
125 |
| -\pnum |
126 |
| -The regular expressions library\iref{re} provides regular expression matching and searching. |
127 |
| - |
128 | 125 | \pnum
|
129 | 126 | The concurrency support library\iref{thread} provides components to create
|
130 | 127 | and manage threads,
|
|
0 commit comments