tmp/tmp2nfbnf6c/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,18 @@
|
|
| 1 |
#### Library contents <a id="contents">[[contents]]</a>
|
| 2 |
|
| 3 |
-
The C++standard library provides definitions for the
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
-
All library entities except
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
|
| 12 |
Whenever a name `x` defined in the standard library is mentioned, the
|
| 13 |
name `x` is assumed to be fully qualified as `::std::x`, unless
|
| 14 |
-
explicitly described otherwise. For example, if the Effects section
|
| 15 |
-
library function `F` is described as calling library function `G`,
|
| 16 |
-
function `::std::G` is meant.
|
| 17 |
|
|
|
|
| 1 |
#### Library contents <a id="contents">[[contents]]</a>
|
| 2 |
|
| 3 |
+
The C++standard library provides definitions for the entities and macros
|
| 4 |
+
described in the synopses of the C++standard library headers (
|
| 5 |
+
[[headers]]).
|
| 6 |
|
| 7 |
+
All library entities except `operator new` and `operator delete` are
|
| 8 |
+
defined within the namespace `std` or namespaces nested within namespace
|
| 9 |
+
`std`.[^12] It is unspecified whether names declared in a specific
|
| 10 |
+
namespace are declared directly in that namespace or in an inline
|
| 11 |
+
namespace inside that namespace.[^13]
|
| 12 |
|
| 13 |
Whenever a name `x` defined in the standard library is mentioned, the
|
| 14 |
name `x` is assumed to be fully qualified as `::std::x`, unless
|
| 15 |
+
explicitly described otherwise. For example, if the *Effects:* section
|
| 16 |
+
for library function `F` is described as calling library function `G`,
|
| 17 |
+
the function `::std::G` is meant.
|
| 18 |
|