operator==,!=(std::match_results)
Min standard notice:
Header: <regex>
Compares two match_results objects.
# Declarations
template< class BidirIt, class Alloc >
bool operator==( match_results<BidirIt,Alloc>& lhs,
match_results<BidirIt,Alloc>& rhs );
(since C++11)
template< class BidirIt, class Alloc >
bool operator!=( match_results<BidirIt,Alloc>& lhs,
match_results<BidirIt,Alloc>& rhs );
(since C++11) (until C++20)
# Parameters
lhs, rhs: match results to compare
# Example
This section is incompleteReason: no example