命名空间
变体
操作

std::swap(std::basic_regex)

来自 cppreference.com
< cpp‎ | regex‎ | basic regex
template< class CharT, class Traits >
void swap( basic_regex<CharT, Traits>& lhs, basic_regex<CharT, Traits>& rhs ) noexcept;
(自 C++11)

重载了 std::swap 算法以用于 std::basic_regex。交换 lhsrhs 的状态。实际上调用了 lhs.swap(rhs).

内容

[编辑] 参数

lhs, rhs - 要交换的正则表达式

[编辑] 返回值

(无)

[编辑] 示例

[编辑] 参见

交换内容
(公共成员函数) [编辑]