reference_wrapper& operator=( const reference_wrapper<T>& other ) noexcept; | (since C++11) |
Copy assignment operator. Drops the current reference and stores a reference to other.get()
.
other | - | reference wrapper to copy |
*this
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper/operator=