◐ Shell
clean mode source ↗

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

De cppreference.com

Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.

La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí.

reference operator* () const;

(1)

pointer operator->() const;

(2)

Devuelve un valor p de referencia o un puntero al elemento actual .

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)

Equivalente a 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)

Equivalente a 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.

Parámetros

(Ninguno)

Original:

(none)

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

Valor de retorno

Rvalue de referencia o un puntero al elemento actual .

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.

Ejemplo

Ver también

obtiene la referencia rvalue al elemento indexado
(función miembro pública) [editar]