From Jason Turner

[depr.istrstream.cons]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpqbakhu0a/{from.md → to.md} +0 -19
tmp/tmpqbakhu0a/{from.md → to.md} RENAMED
@@ -1,19 +0,0 @@
1
- #### `istrstream` constructors <a id="depr.istrstream.cons">[[depr.istrstream.cons]]</a>
2
-
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
-