Namensräume
Varianten
Aktionen

std::match_results::ready

Aus cppreference.com
< cpp‎ | regex‎ | match results

 
 
Reguläre Ausdrücke Bibliothek
Classes
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex(C++11)
sub_match(C++11)
match_results(C++11)
Algorithmen
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_match(C++11)
regex_search(C++11)
regex_replace(C++11)
Iteratoren
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_iterator(C++11)
regex_token_iterator(C++11)
Ausnahmen
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_error(C++11)
Traits
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_traits(C++11)
Konstanten
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
syntax_option_type(C++11)
match_flag_type(C++11)
error_type(C++11)
 
std::match_results
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::match_results
match_results::~match_results
match_results::operator=
match_results::get_allocator
State
Original:
State
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::ready
Elementzugriff zerstört
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::size
match_results::max_size
match_results::empty
match_results::length
match_results::position
match_results::str
match_results::operator_at
match_results::prefix
match_results::suffix
Iteratoren
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::begin
match_results::cbegin
match_results::end
match_results::cend
Format
Original:
Format
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::format
Modifiers
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
match_results::swap
 
bool ready() const;
(seit C++11)

[Bearbeiten] Rückgabewert

Zeigt an, ob die Spielergebnisse bereit (gültig) oder nicht .
Original:
Indicates if the match results are ready (valid) or not.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ein default-konstruiert Spiel Ergebnis ist immer in einer unready Zustand und kann nur fertig gemacht werden, indem eine der regex Algorithmen. Das bereit Zustand impliziert, dass alle Spielergebnisse wurden voll etabliert .
Original:
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 text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Das Ergebnis des Aufrufs meisten Elementfunktionen der match_results Objekt, das nicht bereit ist undefiniert .
Original:
The result of calling most member functions of the match_results object that is not ready is undefined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.