tmp/tmppoypilv3/{from.md → to.md}
RENAMED
|
@@ -3,19 +3,17 @@
|
|
| 3 |
``` cpp
|
| 4 |
explicit istrstream(const char* s);
|
| 5 |
explicit istrstream(char* s);
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:*
|
| 9 |
-
base class with `istream(&sb)` and initializing `sb` with
|
| 10 |
`strstreambuf(s, 0)`. `s` shall designate the first element of an NTBS.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
istrstream(const char* s, streamsize n);
|
| 14 |
istrstream(char* s, streamsize n);
|
| 15 |
```
|
| 16 |
|
| 17 |
-
*Effects:*
|
| 18 |
-
base class with `istream(&sb)` and initializing `sb` with
|
| 19 |
`strstreambuf(s, n)`. `s` shall designate the first element of an array
|
| 20 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 21 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
explicit istrstream(const char* s);
|
| 5 |
explicit istrstream(char* s);
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Effects:* Initializes the base class with `istream(&sb)` and `sb` with
|
|
|
|
| 9 |
`strstreambuf(s, 0)`. `s` shall designate the first element of an NTBS.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
istrstream(const char* s, streamsize n);
|
| 13 |
istrstream(char* s, streamsize n);
|
| 14 |
```
|
| 15 |
|
| 16 |
+
*Effects:* Initializes the base class with `istream(&sb)` and `sb` with
|
|
|
|
| 17 |
`strstreambuf(s, n)`. `s` shall designate the first element of an array
|
| 18 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 19 |
|