Assignment operators
Declared in <txgraph.h>
Copy assignment is disabled: a TxGraph entry can have at most one Ref pointing to it.
Ref&
operator=(Ref const& other) = delete;
» more...
Move assignment is disabled; a moved-from Ref would leave two Refs for one entry.
Ref&
operator=(Ref&& other) noexcept = delete;
» more...
| Name | Description |
|---|---|
| other | The Ref being assigned from. |