Namensräume
Varianten

std::reference_wrapper::operator=

Aus cppreference.com

 
 
 
 
std::reference_wrapper
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.
reference_wrapper::reference_wrapper
reference_wrapper::operator=
reference_wrapper::get
reference_wrapper::operator T&
reference_wrapper::operator()
 
reference_wrapper& operator=(const reference_wrapper<T>& other );
(seit C++11)
Kopieren Zuweisungsoperator. Löscht die aktuellen Referenz-und speichert eine Referenz auf other.get() .
Original:
Copy assignment operator. Drops the current reference and stores a reference to other.get().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Parameter

other -
Referenz-Wrapper zu kopieren
Original:
reference wrapper to copy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Werte zurückgeben

*this

[Bearbeiten]Ausnahmen

noexcept specification:  
noexcept
  (seit C++11)
close