tmp/tmp8vd1d1cm/{from.md → to.md}
RENAMED
|
@@ -4,11 +4,11 @@
|
|
| 4 |
ostrstream();
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Constructs an object of class `ostrstream`, initializing the
|
| 8 |
base class with `ostream(&sb)` and initializing `sb` with
|
| 9 |
-
`strstreambuf()
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
|
| 13 |
```
|
| 14 |
|
|
@@ -19,7 +19,7 @@ constructors:
|
|
| 19 |
- If `(mode & app) == 0`, then `s` shall designate the first element of
|
| 20 |
an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
|
| 21 |
- If `(mode & app) != 0`, then `s` shall designate the first element of
|
| 22 |
an array of `n` elements that contains an NTBSwhose first element is
|
| 23 |
designated by `s`. The constructor is
|
| 24 |
-
`strstreambuf(s, n, s + std::strlen(s))`.[^
|
| 25 |
|
|
|
|
| 4 |
ostrstream();
|
| 5 |
```
|
| 6 |
|
| 7 |
*Effects:* Constructs an object of class `ostrstream`, initializing the
|
| 8 |
base class with `ostream(&sb)` and initializing `sb` with
|
| 9 |
+
`strstreambuf()`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
|
| 13 |
```
|
| 14 |
|
|
|
|
| 19 |
- If `(mode & app) == 0`, then `s` shall designate the first element of
|
| 20 |
an array of `n` elements. The constructor is `strstreambuf(s, n, s)`.
|
| 21 |
- If `(mode & app) != 0`, then `s` shall designate the first element of
|
| 22 |
an array of `n` elements that contains an NTBSwhose first element is
|
| 23 |
designated by `s`. The constructor is
|
| 24 |
+
`strstreambuf(s, n, s + std::strlen(s))`.[^3]
|
| 25 |
|