tmp/tmpxt4f1h1v/{from.md → to.md}
RENAMED
|
@@ -25,9 +25,9 @@ be a dereferenceable object of type `I`. `I` and `T` model
|
|
| 25 |
``` cpp
|
| 26 |
*i = E;
|
| 27 |
++i;
|
| 28 |
```
|
| 29 |
|
| 30 |
-
|
| 31 |
-
through the same iterator twice
|
| 32 |
-
|
| 33 |
|
|
|
|
| 25 |
``` cpp
|
| 26 |
*i = E;
|
| 27 |
++i;
|
| 28 |
```
|
| 29 |
|
| 30 |
+
*Recommended practice:* The implementation of an algorithm on output
|
| 31 |
+
iterators should never attempt to pass through the same iterator twice;
|
| 32 |
+
such an algorithm should be a single-pass algorithm.
|
| 33 |
|