tmp/tmptv_ftplm/{from.md → to.md}
RENAMED
|
@@ -1,21 +1,22 @@
|
|
| 1 |
### Insert return type <a id="container.insert.return">[[container.insert.return]]</a>
|
| 2 |
|
| 3 |
The associative containers with unique keys and the unordered containers
|
| 4 |
with unique keys have a member function `insert` that returns a nested
|
| 5 |
type `insert_return_type`. That return type is a specialization of the
|
| 6 |
-
|
| 7 |
|
| 8 |
``` cpp
|
| 9 |
template<class Iterator, class NodeType>
|
| 10 |
-
struct
|
| 11 |
{
|
| 12 |
Iterator position;
|
| 13 |
bool inserted;
|
| 14 |
NodeType node;
|
| 15 |
};
|
| 16 |
```
|
| 17 |
|
| 18 |
-
The name `
|
| 19 |
-
has the template parameters, data members, and
|
| 20 |
-
above. It has no base classes or members other
|
|
|
|
| 21 |
|
|
|
|
| 1 |
### Insert return type <a id="container.insert.return">[[container.insert.return]]</a>
|
| 2 |
|
| 3 |
The associative containers with unique keys and the unordered containers
|
| 4 |
with unique keys have a member function `insert` that returns a nested
|
| 5 |
type `insert_return_type`. That return type is a specialization of the
|
| 6 |
+
template specified in this subclause.
|
| 7 |
|
| 8 |
``` cpp
|
| 9 |
template<class Iterator, class NodeType>
|
| 10 |
+
struct insert-return-type
|
| 11 |
{
|
| 12 |
Iterator position;
|
| 13 |
bool inserted;
|
| 14 |
NodeType node;
|
| 15 |
};
|
| 16 |
```
|
| 17 |
|
| 18 |
+
The name *`insert-return-type`* is exposition only.
|
| 19 |
+
*`insert-return-type`* has the template parameters, data members, and
|
| 20 |
+
special members specified above. It has no base classes or members other
|
| 21 |
+
than those specified.
|
| 22 |
|