std::unique_lock<Mutex>::mutex (3) - Linux Manuals

std::unique_lock<Mutex>::mutex: std::unique_lock<Mutex>::mutex

NAME

std::unique_lock<Mutex>::mutex - std::unique_lock<Mutex>::mutex

Synopsis


mutex_type* mutex() const noexcept; (since C++11)


Returns a pointer to the associated mutex, or a null pointer if there is no associated mutex.

Parameters


(none)

Return value


Pointer to the associated mutex or a null pointer if there is no associated mutex.

Example


 This section is incomplete
 Reason: no example