Assignment operators
Declared in <folly/concurrency/PriorityUnboundedQueueSet.h>
Deleted copy assignment; the set is not copy-assignable.
PriorityUnboundedQueueSet&
operator=(PriorityUnboundedQueueSet const& other) = delete;
» more...
Deleted move assignment; the set is not move-assignable.
PriorityUnboundedQueueSet&
operator=(PriorityUnboundedQueueSet&& other) = delete;
» more...
A reference to this set.
| Name | Description |
|---|---|
| other | Set to copy from. |