std::regex_token_iterator<BidirIt,CharT,Traits>::operator==, operator!=
来自 cppreference.com
< cpp | regex | regex token iterator
bool operator==( const regex_token_iterator& other ) const; |
(1) | (自 C++11) |
bool operator!=( const regex_token_iterator& other ) const; |
(2) | (自 C++11) (直到 C++20) |
检查 *this 和 other 是否等效。
两个正则表达式令牌迭代器相等,如果
a) 它们都是序列末尾迭代器。
b) 它们都是后缀迭代器,并且后缀相等。
c) 它们都不是序列末尾或后缀迭代器,并且
- position == other.position
- N == other.N
- subs == other.subs
1) 检查 *this 是否等于 other.
2) 检查 *this 是否不等于 other.
|
(自 C++20) |
本节不完整 原因:更好地解释。例如, subs 是一个仅用于说明的匹配子表达式的向量。 |
[编辑] 参数
other | - | 另一个要比较的正则表达式令牌迭代器 |
[编辑] 返回值
1) 如果 *this 等于 other,则为 true,否则为 false。
2) 如果 *this 不等于 other,则为 true,否则为 false。