std::reference_wrapper::operator=
From cppreference.com
< cpp | utility | functional | reference wrapper
reference_wrapper& operator=( const reference_wrapper<T>& other );
|
(since C++11) | |
Copy assignment operator. Drops the current reference and stores a reference to other.get().
[edit] Parameters
other | - | reference wrapper to copy |
[edit] Return values
*this
[edit] Exceptions
noexcept specification:
noexcept