std::shared_timed_mutex::unlock_shared
Min standard notice:
Releases the mutex from shared ownership by the calling thread.
# Declarations
void unlock_shared();
(since C++14)
# Return value
(none)
# Notes
unlock_shared() is usually not called directly: std::shared_lock is used to manage shared locking.
# Example
This section is incompleteReason: no example