GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::regex_token_iterator::operator==,operator!=(3) C++ Standard Libary std::regex_token_iterator::operator==,operator!=(3)

std::regex_token_iterator::operator==,operator!= - std::regex_token_iterator::operator==,operator!=


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 and other are equivalent.


Two regex token iterators are equal if:


a) They are both end-of-sequence iterators
b) They are both suffix iterators and the suffixes are equal.
c) Neither of them is end-of-sequence or suffix iterator and:


* position == other.position
* N == other.N
* subs == other.subs


1) Checks whether *this is equal to other.
2) Checks whether *this is not equal to other.


The != operator is synthesized from operator==. (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


1) true if *this is equal to other, false otherwise.
2) true if *this is not equal to other, false otherwise.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.