From Jason Turner

[streambuf.assign]

Diff to HTML by rtfpessoa

tmp/tmpgzxh_e9s/{from.md → to.md} RENAMED
@@ -2,13 +2,11 @@
2
 
3
  ``` cpp
4
  basic_streambuf& operator=(const basic_streambuf& rhs);
5
  ```
6
 
7
- *Effects:* Assigns the data members of `rhs` to `*this`.
8
-
9
- *Postconditions:*
10
 
11
  - `eback() == rhs.eback()`
12
  - `gptr() == rhs.gptr()`
13
  - `egptr() == rhs.egptr()`
14
  - `pbase() == rhs.pbase()`
 
2
 
3
  ``` cpp
4
  basic_streambuf& operator=(const basic_streambuf& rhs);
5
  ```
6
 
7
+ *Ensures:*
 
 
8
 
9
  - `eback() == rhs.eback()`
10
  - `gptr() == rhs.gptr()`
11
  - `egptr() == rhs.egptr()`
12
  - `pbase() == rhs.pbase()`