namespace std {
template <class T, class Allocator>
void swap(forward_list<T, Allocator>& x,
forward_list<T, Allocator>& y); // (1) C++11
template <class T, class Allocator>
void swap(forward_list<T,Allocator>& x,
forward_list<T,Allocator>& y)
noexcept(noexcept(x.swap(y))); // (1) C++17
}
概要
2つのforward_list
オブジェクトを入れ替える。
効果
x.swap(y)
戻り値
なし
例
#include <iostream>
#include <forward_list>
#include <string>
#include <algorithm> // std::for_each
template <class T>
void print(const std::string& name, const std::forward_list<T>& ls)
{
std::cout << name << " : {";
std::for_each(ls.begin(), ls.end(), [](const T& x) { std::cout << x << " "; });
std::cout << "}" << std::endl;
}
int main()
{
std::forward_list<int> ls1 = {4, 5, 6};
std::forward_list<int> ls2 = {1, 2, 3};
std::swap(ls1, ls2);
print("ls1", ls1);
print("ls2", ls2);
}
出力
ls1 : {1 2 3 }
ls2 : {4 5 6 }
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.0 ✅
- ICC: ??
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅
参照
- N4258 Cleaning-up noexcept in the Library, Rev 3
noexcept
追加の経緯となる提案文書