std::shared_mutex::unlock_shared

Releases the mutex from shared ownership by the calling thread.

# Declarations

void unlock_shared();

(since C++17)

# 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

# See also