operator==,!=(std::match_results)

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

# Example

This section is incompleteReason: no example