tmp/tmpu713xro6/{from.md → to.md}
RENAMED
|
@@ -1,13 +1,14 @@
|
|
| 1 |
-
####
|
| 2 |
|
| 3 |
-
For each `istreambuf_iterator` constructor in this
|
| 4 |
end-of-stream iterator is constructed if and only if the exposition-only
|
| 5 |
member `sbuf_` is initialized with a null pointer value.
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
constexpr istreambuf_iterator() noexcept;
|
|
|
|
| 9 |
```
|
| 10 |
|
| 11 |
*Effects:* Initializes `sbuf_` with `nullptr`.
|
| 12 |
|
| 13 |
``` cpp
|
|
|
|
| 1 |
+
#### Constructors <a id="istreambuf.iterator.cons">[[istreambuf.iterator.cons]]</a>
|
| 2 |
|
| 3 |
+
For each `istreambuf_iterator` constructor in this subclause, an
|
| 4 |
end-of-stream iterator is constructed if and only if the exposition-only
|
| 5 |
member `sbuf_` is initialized with a null pointer value.
|
| 6 |
|
| 7 |
``` cpp
|
| 8 |
constexpr istreambuf_iterator() noexcept;
|
| 9 |
+
constexpr istreambuf_iterator(default_sentinel_t) noexcept;
|
| 10 |
```
|
| 11 |
|
| 12 |
*Effects:* Initializes `sbuf_` with `nullptr`.
|
| 13 |
|
| 14 |
``` cpp
|