◐ Shell
clean mode source ↗

std::move_iterator::operator*,-> — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

reference operator* () const;

(1)

pointer operator->() const;

(2)

Retourne une rvalue de référence ou un pointeur vers l'élément actuel .

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.

1)

Equivalent à 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.

2)

Equivalent à 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.

Paramètres

(Aucun)

Original:

(none)

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Retourne la valeur

Rvalue de référence ou un pointeur vers l'élément actuel .

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.

Exemple

Voir aussi

obtient de référence rvalue à l'élément indexé

Original:

obtains rvalue reference to indexed element

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(fonction membre publique) [edit]