std::unique_lock::swap
From cppreference.com
< cpp | thread | unique lock
template< class Mutex > void swap( unique_lock<Mutex>& other ); |
(since C++11) | |
Exchanges the internal states of the lock objects.
Contents |
[edit] Parameters
other | - | the lock to swap the state with |
[edit] Return value
(none)
[edit] Exceptions
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
specialization of std::swap for unique_lock (function template) |