std::match_results::ready
From cppreference.com
< cpp | regex | match results
bool ready() const; |
(since C++11) | |
This section is incomplete |
[edit] Return value
Indicates if the match results are ready (valid) or not.
A default-constructed match result is always in an unready state, 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.