Scroll to navigation

std::unique_lock::operator=(3) C++ Standard Libary std::unique_lock::operator=(3)

NAME

std::unique_lock::operator= - std::unique_lock::operator=

Synopsis


unique_lock& operator=( unique_lock&& other ); (since C++11)


Move assignment operator. Replaces the contents with those of other using move
semantics.


If prior to the call *this has an associated mutex and has acquired ownership of it,
the mutex is unlocked.

Parameters


other - another unique_lock to replace the state with

Return value


*this

Exceptions


Throws nothing

2022.07.31 http://cppreference.com