std::swap(std::match_results)
来自 cppreference.com
< cpp | regex | match results
定义在头文件 <regex> 中 |
||
template< class BidirIt, class Alloc > void swap( match_results<BidirIt,Alloc>& x1, |
(自 C++11 起) | |
专门化了 std::swap 算法用于 std::match_results。交换 x1 的内容与 x2 的内容。有效地调用 x1.swap(x2).
内容 |
[编辑] 参数
x1, x2 | - | 将要交换内容的 match_results 对象 |
类型要求 | ||
-BidirIt 必须满足 LegacyBidirectionalIterator 的要求。 | ||
-Alloc 必须满足 Allocator 的要求。 |
[编辑] 返回值
(无)
[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 另请参阅
交换内容 (公有成员函数) |