std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!= (3) - Linux Manuals
std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=: std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=
Command to display std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=
manual in Linux: $ man 3 std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=
NAME
std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!= - std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=
Synopsis
bool operator==(const regex_iterator& rhs) const; (1) (since C++11)
bool operator!=(const regex_iterator& rhs) const; (2) (since C++11)
Compares two regex_iterators.
For the sake of exposition, assume that regex_iterator contains the following members:
* BidirIt begin;
* BidirIt end;
* const regex_type *pregex;
* std::regex_constants::match_flag_type flags;
* std::match_results<BidirIt> match;
1) Returns true if *this and rhs are both end-of-sequence iterators, or if all of the following conditions are true:
* begin == rhs.begin
* end == rhs.end
* pregex == rhs.pregex
* flags == rhs.flags
* match[0] == rhs.match[0]
2) Returns !(*this == rhs)
Parameters
rhs - a regex_iterator to compare to
Example
This section is incomplete
Reason: no example
Pages related to std::regex_iterator<BidirIt,CharT,Traits>::operator==,operator!=
- std::regex_iterator<BidirIt,CharT,Traits>::operator= (3) - std::regex_iterator<BidirIt,CharT,Traits>::operator=
- std::regex_iterator<BidirIt,CharT,Traits>::operator*,operator-> (3) - std::regex_iterator<BidirIt,CharT,Traits>::operator*,operator->
- std::regex_iterator<BidirIt,CharT,Traits>::operator++,operator++(int) (3) - std::regex_iterator<BidirIt,CharT,Traits>::operator++,operator++(int)
- std::regex_iterator<BidirIt,CharT,Traits>::regex_iterator (3) - std::regex_iterator<BidirIt,CharT,Traits>::regex_iterator
- std::regex_iterator (3) - std::regex_iterator
- std::regex_constants (3)
- std::regex_constants::error_type (3) - std::regex_constants::error_type
- std::regex_constants::match_flag_type (3) - std::regex_constants::match_flag_type
- std::regex_constants::syntax_option_type (3) - std::regex_constants::syntax_option_type
- std::regex_error (3) - std::regex_error
- std::regex_error::code (3) - std::regex_error::code
- std::regex_error::regex_error (3) - std::regex_error::regex_error
- std::regex_match (3) - std::regex_match
- std::regex_replace (3) - std::regex_replace
- std::regex_search (3) - std::regex_search