tmp/tmpmjqwnpeh/{from.md → to.md}
RENAMED
|
@@ -1,15 +1,14 @@
|
|
| 1 |
-
####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
basic_streambuf();
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Effects:*
|
| 8 |
-
`basic_streambuf<charT, traits>` and initializes:[^13]
|
| 9 |
|
| 10 |
-
- all
|
| 11 |
- the `getloc()` member to a copy the global locale, `locale()`, at the
|
| 12 |
time of construction.
|
| 13 |
|
| 14 |
*Remarks:* Once the `getloc()` member is initialized, results of calling
|
| 15 |
locale member functions, and of members of facets so obtained, can
|
|
@@ -17,13 +16,11 @@ safely be cached until the next time the member `imbue` is called.
|
|
| 17 |
|
| 18 |
``` cpp
|
| 19 |
basic_streambuf(const basic_streambuf& rhs);
|
| 20 |
```
|
| 21 |
|
| 22 |
-
*
|
| 23 |
-
|
| 24 |
-
*Postconditions:*
|
| 25 |
|
| 26 |
- `eback() == rhs.eback()`
|
| 27 |
- `gptr() == rhs.gptr()`
|
| 28 |
- `egptr() == rhs.egptr()`
|
| 29 |
- `pbase() == rhs.pbase()`
|
|
|
|
| 1 |
+
#### Constructors <a id="streambuf.cons">[[streambuf.cons]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
basic_streambuf();
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Effects:* Initializes:[^13]
|
|
|
|
| 8 |
|
| 9 |
+
- all pointer member objects to null pointers,
|
| 10 |
- the `getloc()` member to a copy the global locale, `locale()`, at the
|
| 11 |
time of construction.
|
| 12 |
|
| 13 |
*Remarks:* Once the `getloc()` member is initialized, results of calling
|
| 14 |
locale member functions, and of members of facets so obtained, can
|
|
|
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
basic_streambuf(const basic_streambuf& rhs);
|
| 19 |
```
|
| 20 |
|
| 21 |
+
*Ensures:*
|
|
|
|
|
|
|
| 22 |
|
| 23 |
- `eback() == rhs.eback()`
|
| 24 |
- `gptr() == rhs.gptr()`
|
| 25 |
- `egptr() == rhs.egptr()`
|
| 26 |
- `pbase() == rhs.pbase()`
|