February 2019
Intermediate to advanced
592 pages
20h 37m
English
Constructs an std::unique_lock instance with no associated mutex.
unique_lock() noexcept;
this->mutex()==NULL, this->owns_lock()==false.
Constructs an std::unique_lock instance that locks the supplied mutex.
explicit unique_lock(mutex_type& m);
this->owns_lock()==true, this->mutex()==&m.
Constructs an std::unique_lock instance ...