tmp/tmp2w2ydnpd/{from.md → to.md}
RENAMED
|
@@ -20,15 +20,15 @@ void swap(basic_stringbuf& rhs) noexcept(see below);
|
|
| 20 |
|
| 21 |
*Effects:* Exchanges the state of `*this` and `rhs`.
|
| 22 |
|
| 23 |
*Remarks:* The exception specification is equivalent to:
|
| 24 |
`allocator_traits<Allocator>::propagate_on_container_swap::value ||`
|
| 25 |
-
`allocator_traits<Allocator>::is_always_equal::value`
|
| 26 |
|
| 27 |
``` cpp
|
| 28 |
template<class charT, class traits, class Allocator>
|
| 29 |
void swap(basic_stringbuf<charT, traits, Allocator>& x,
|
| 30 |
basic_stringbuf<charT, traits, Allocator>& y) noexcept(noexcept(x.swap(y)));
|
| 31 |
```
|
| 32 |
|
| 33 |
-
*Effects:* Equivalent to
|
| 34 |
|
|
|
|
| 20 |
|
| 21 |
*Effects:* Exchanges the state of `*this` and `rhs`.
|
| 22 |
|
| 23 |
*Remarks:* The exception specification is equivalent to:
|
| 24 |
`allocator_traits<Allocator>::propagate_on_container_swap::value ||`
|
| 25 |
+
`allocator_traits<Allocator>::is_always_equal::value`
|
| 26 |
|
| 27 |
``` cpp
|
| 28 |
template<class charT, class traits, class Allocator>
|
| 29 |
void swap(basic_stringbuf<charT, traits, Allocator>& x,
|
| 30 |
basic_stringbuf<charT, traits, Allocator>& y) noexcept(noexcept(x.swap(y)));
|
| 31 |
```
|
| 32 |
|
| 33 |
+
*Effects:* Equivalent to `x.swap(y)`.
|
| 34 |
|