tmp/tmpiqk3_o8k/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Specialized algorithms <a id="syncstream.syncbuf.special">[[syncstream.syncbuf.special]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
template<class charT, class traits, class Allocator>
|
| 5 |
+
void swap(basic_syncbuf<charT, traits, Allocator>& a,
|
| 6 |
+
basic_syncbuf<charT, traits, Allocator>& b) noexcept;
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
*Effects:* Equivalent to `a.swap(b)`.
|
| 10 |
+
|