tmp/tmp24ta827z/{from.md → to.md}
RENAMED
|
@@ -30,21 +30,19 @@ is presented here as:
|
|
| 30 |
``` cpp
|
| 31 |
explicit istrstream(const char* s);
|
| 32 |
explicit istrstream(char* s);
|
| 33 |
```
|
| 34 |
|
| 35 |
-
*Effects:*
|
| 36 |
-
base class with `istream(&sb)` and initializing `sb` with
|
| 37 |
`strstreambuf(s, 0)`. `s` shall designate the first element of an NTBS.
|
| 38 |
|
| 39 |
``` cpp
|
| 40 |
istrstream(const char* s, streamsize n);
|
| 41 |
istrstream(char* s, streamsize n);
|
| 42 |
```
|
| 43 |
|
| 44 |
-
*Effects:*
|
| 45 |
-
base class with `istream(&sb)` and initializing `sb` with
|
| 46 |
`strstreambuf(s, n)`. `s` shall designate the first element of an array
|
| 47 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 48 |
|
| 49 |
#### Member functions <a id="depr.istrstream.members">[[depr.istrstream.members]]</a>
|
| 50 |
|
|
|
|
| 30 |
``` cpp
|
| 31 |
explicit istrstream(const char* s);
|
| 32 |
explicit istrstream(char* s);
|
| 33 |
```
|
| 34 |
|
| 35 |
+
*Effects:* Initializes the base class with `istream(&sb)` and `sb` with
|
|
|
|
| 36 |
`strstreambuf(s, 0)`. `s` shall designate the first element of an NTBS.
|
| 37 |
|
| 38 |
``` cpp
|
| 39 |
istrstream(const char* s, streamsize n);
|
| 40 |
istrstream(char* s, streamsize n);
|
| 41 |
```
|
| 42 |
|
| 43 |
+
*Effects:* Initializes the base class with `istream(&sb)` and `sb` with
|
|
|
|
| 44 |
`strstreambuf(s, n)`. `s` shall designate the first element of an array
|
| 45 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 46 |
|
| 47 |
#### Member functions <a id="depr.istrstream.members">[[depr.istrstream.members]]</a>
|
| 48 |
|