std::match_results<BidirIt,Alloc>::ready (3) - Linux Manuals
std::match_results<BidirIt,Alloc>::ready: std::match_results<BidirIt,Alloc>::ready
NAME
std::match_results<BidirIt,Alloc>::ready - std::match_results<BidirIt,Alloc>::ready
Synopsis
bool ready() const; (since C++11)
Indicates if the match results are ready (valid) or not.
A default-constructed match result has no result state (is not ready), and can only be made ready by one of the regex algorithms. The ready state implies that all match results have been fully established.
The result of calling most member functions of the match_results object that is not ready is undefined.
Return value
true if the match results are ready, false otherwise.
Example
// Run this code
Output: