std::shared_timed_mutex::unlock

Unlocks the mutex.

# Declarations

void unlock();

(since C++14)

# Return value

(none)

# Notes

unlock() is usually not called directly: std::unique_lock and std::lock_guard are used to manage exclusive locking.

# Example

This section is incompleteReason: no example

# See also