◐ Shell
clean mode source ↗

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

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.

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.

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.

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.

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.

Beispiel

Siehe auch

erhält rvalue Bezug auf indizierte Element

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.


(öffentliche Elementfunktion) [edit]