- functional[meta header]
- std[meta namespace]
- copyable_function[meta class]
- function template[meta id-type]
- cpp26[meta cpp]
void swap(copyable_function& other) noexcept;
他のcopyable_function
オブジェクトと中身を入れ替える。
*this
が持つ関数とother
が持つ関数を交換する。
なし
投げない
#include <iostream>
#include <functional>
int ident(int x) { return x; }
int add(int x) { return x + 1; }
int main()
{
std::copyable_function<int(int)> f = ident;
std::copyable_function<int(int)> g = add;
// fとgを交換
f.swap(g);
std::cout << f(1) << std::endl; // add
std::cout << g(1) << std::endl; // ident
}
- swap[color ff0000]
- f(1)[link op_call.md]
- g(1)[link op_call.md]
2
1
- C++26
- Clang: ??
- GCC: ??
- ICC: ??
- Visual C++: ??