tmp/tmp14tiwajt/{from.md → to.md}
RENAMED
|
@@ -32,19 +32,20 @@ explicit istrstream(const char* s);
|
|
| 32 |
explicit istrstream(char* s);
|
| 33 |
```
|
| 34 |
|
| 35 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 36 |
base class with `istream(&sb)` and initializing `sb` with
|
| 37 |
-
`strstreambuf(s,0)
|
| 38 |
|
| 39 |
``` cpp
|
| 40 |
istrstream(const char* s, streamsize n);
|
|
|
|
| 41 |
```
|
| 42 |
|
| 43 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 44 |
base class with `istream(&sb)` and initializing `sb` with
|
| 45 |
-
`strstreambuf(s,n)
|
| 46 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 47 |
|
| 48 |
#### Member functions <a id="depr.istrstream.members">[[depr.istrstream.members]]</a>
|
| 49 |
|
| 50 |
``` cpp
|
|
|
|
| 32 |
explicit istrstream(char* s);
|
| 33 |
```
|
| 34 |
|
| 35 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 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:* Constructs an object of class `istrstream`, initializing the
|
| 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 |
|
| 51 |
``` cpp
|