Assignment operators
Declared in <folly/SharedMutex.h>
Deleted copy assignment; the lock is not copyable.
shared_lock&
operator=(shared_lock const& other) = delete;
» more...
Move-assigns a lock, transferring ownership from another lock.
shared_lock&
operator=(shared_lock&& other) noexcept;
» more...
| Name | Description |
|---|---|
| other | The lock that would be assigned from. |