From Jason Turner

[filebuf.assign]

Diff to HTML by rtfpessoa

tmp/tmp92_olehu/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- #### Assign and swap <a id="filebuf.assign">[[filebuf.assign]]</a>
2
 
3
  ``` cpp
4
  basic_filebuf& operator=(basic_filebuf&& rhs);
5
  ```
6
 
@@ -20,7 +20,7 @@ void swap(basic_filebuf& rhs);
20
  template<class charT, class traits>
21
  void swap(basic_filebuf<charT, traits>& x,
22
  basic_filebuf<charT, traits>& y);
23
  ```
24
 
25
- *Effects:* As if by `x.swap(y)`.
26
 
 
1
+ #### Assignment and swap <a id="filebuf.assign">[[filebuf.assign]]</a>
2
 
3
  ``` cpp
4
  basic_filebuf& operator=(basic_filebuf&& rhs);
5
  ```
6
 
 
20
  template<class charT, class traits>
21
  void swap(basic_filebuf<charT, traits>& x,
22
  basic_filebuf<charT, traits>& y);
23
  ```
24
 
25
+ *Effects:* Equivalent to: `x.swap(y)`.
26