| Localization library | |||||||||||||||||||||||||
| Regular expressions library(C++11) | |||||||||||||||||||||||||
| Formatting library(C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| Classes | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Algorithms | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Iterators | ||||
(C++11) | ||||
(C++11) | ||||
| Exceptions | ||||
(C++11) | ||||
| Traits | ||||
(C++11) | ||||
| Constants | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Regex Grammar | ||||
(C++11) |
| Member functions | ||||
| Comparisons | ||||
regex_token_iterator::operator==regex_token_iterator::operator!= (until C++20) | ||||
| Observers | ||||
| Modifiers | ||||
bool operator==(const regex_token_iterator& other)const; | (1) | (since C++11) |
bool operator!=(const regex_token_iterator& other)const; | (2) | (since C++11) (until C++20) |
Checks whether*this andother are equivalent.
Two regex token iterators are equal if:
The | (since C++20) |
| This section is incomplete Reason: Explain better. For example, subs is an exposition-only vector of matched sub-expressions. |
| other | - | another regex token iterator to compare to |