tmp/tmp0z99o7ix/{from.md → to.md}
RENAMED
|
@@ -16,10 +16,11 @@ namespace std {
|
|
| 16 |
|
| 17 |
template<class T, class Allocator>
|
| 18 |
void swap(list<T, Allocator>& x, list<T, Allocator>& y)
|
| 19 |
noexcept(noexcept(x.swap(y)));
|
| 20 |
|
|
|
|
| 21 |
template<class T, class Allocator, class U>
|
| 22 |
typename list<T, Allocator>::size_type
|
| 23 |
erase(list<T, Allocator>& c, const U& value);
|
| 24 |
template<class T, class Allocator, class Predicate>
|
| 25 |
typename list<T, Allocator>::size_type
|
|
|
|
| 16 |
|
| 17 |
template<class T, class Allocator>
|
| 18 |
void swap(list<T, Allocator>& x, list<T, Allocator>& y)
|
| 19 |
noexcept(noexcept(x.swap(y)));
|
| 20 |
|
| 21 |
+
// [list.erasure], erasure
|
| 22 |
template<class T, class Allocator, class U>
|
| 23 |
typename list<T, Allocator>::size_type
|
| 24 |
erase(list<T, Allocator>& c, const U& value);
|
| 25 |
template<class T, class Allocator, class Predicate>
|
| 26 |
typename list<T, Allocator>::size_type
|