std::shared_lock<Mutex>::unlock

Unlocks the associated mutex from shared mode. Effectively calls mutex()->unlock_shared().

# Declarations

void unlock();

(since C++14)

# Return value

(none)

# Example

This section is incompleteReason: no example

# See also