The read/write mutex module provides a primitive for maintaining shared read access and mutually exclusive write access.
This class represents a mutex that allows any number of readers to enter, but when a writer enters, all other readers and writers are blocked.
See Source File core/sync/rwmutex.d
Boost License 1.0
Copyright Sean Kelly 2005 - 2009.
Sean Kelly
The read/write mutex module provides a primitive for maintaining shared read access and mutually exclusive write access.