std::move_iterator::operator*,->
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> reference operator* () const; |
(1) | |
pointer operator->() const; |
(2) | |
Gibt eine rvalue-Referenz oder Zeiger auf das aktuelle Element .
Original:
Returns a rvalue-reference or pointer to the current element.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Entspricht
std::move(*current);Original:
Equivalent to
std::move(*current);The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Entspricht
current .Original:
Equivalent to
current.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parameter
(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Rückgabewert
Rvalue-Referenz oder Zeiger auf das aktuelle Element .
Original:
Rvalue-reference or pointer to the current element.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Beispiel
| This section is incomplete Reason: no example |
