folly::PriorityUnboundedQueueSet::operator=

Assignment operators

Synopses

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...

Return Value

A reference to this set.

Parameters

NameDescription
otherSet to copy from.