tmp/tmpycd8nuvn/{from.md → to.md}
RENAMED
|
@@ -14,14 +14,16 @@ signature with additional default arguments.
|
|
| 14 |
Unless otherwise specified, global and non-member functions in the
|
| 15 |
standard library shall not use functions from another namespace which
|
| 16 |
are found through *argument-dependent name lookup* (
|
| 17 |
[[basic.lookup.argdep]]). The phrase “unless otherwise specified” is
|
| 18 |
intended to allow argument-dependent lookup in cases like that of
|
| 19 |
-
`ostream_iterator
|
|
|
|
|
|
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
*out_stream << value;
|
| 23 |
if (delim != 0)
|
| 24 |
*out_stream << delim;
|
| 25 |
-
return
|
| 26 |
```
|
| 27 |
|
|
|
|
| 14 |
Unless otherwise specified, global and non-member functions in the
|
| 15 |
standard library shall not use functions from another namespace which
|
| 16 |
are found through *argument-dependent name lookup* (
|
| 17 |
[[basic.lookup.argdep]]). The phrase “unless otherwise specified” is
|
| 18 |
intended to allow argument-dependent lookup in cases like that of
|
| 19 |
+
`ostream_iterator::operator=` ([[ostream.iterator.ops]]):
|
| 20 |
+
|
| 21 |
+
*Effects:*
|
| 22 |
|
| 23 |
``` cpp
|
| 24 |
*out_stream << value;
|
| 25 |
if (delim != 0)
|
| 26 |
*out_stream << delim;
|
| 27 |
+
return *this;
|
| 28 |
```
|
| 29 |
|