std:: swap (std::flat_map)
From cppreference.net
C++
Containers library
|
(C++17)
|
||||
| Sequence | ||||
|
(C++11)
|
||||
|
(C++26)
|
||||
|
(C++26)
|
||||
|
(C++11)
|
||||
| Associative | ||||
| Unordered associative | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Adaptors | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
| Views | ||||
|
(C++20)
|
||||
|
(C++23)
|
||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::flat_map
|
헤더 파일에 정의됨
<flat_map>
|
||
|
void
swap
(
std::
flat_map
&
lhs,
std::
flat_map
&
rhs
)
noexcept
;
|
(C++23부터)
(C++26부터 constexpr) |
|
std::swap 알고리즘을 std::flat_map 에 대해 특수화합니다. lhs 와 rhs 의 내용을 교환합니다. lhs. swap ( rhs ) 를 호출합니다.
목차 |
매개변수
| lhs, rhs | - | 내용을 교환할 컨테이너들 |
복잡도
기본 컨테이너를 교환하는 것과 동일합니다.
예제
이 코드 실행
#include <algorithm> #include <iostream> #include <flat_map> int main() { std::flat_map<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}}; std::flat_map<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}}; auto print = [](std::pair<const int, char>& n) { std::cout << ' ' << n.first << ':' << n.second; }; // 스왑 전 상태 출력 std::cout << "Alice:"; std::for_each(alice.begin(), alice.end(), print); std::cout << "\nBobby:"; std::for_each(bob.begin(), bob.end(), print); std::cout << '\n'; std::cout << "-- SWAP\n"; std::swap(alice, bob); // 스왑 후 상태 출력 std::cout << "Alice:"; std::for_each(alice.begin(), alice.end(), print); std::cout << "\nBobby:"; std::for_each(bob.begin(), bob.end(), print); std::cout << '\n'; }
출력:
Alice: 1:a 2:b 3:c Bobby: 7:Z 8:Y 9:X 10:W -- SWAP Alice: 7:Z 8:Y 9:X 10:W Bobby: 1:a 2:b 3:c
참고 항목
|
내용을 교환합니다
(public member function) |