Assignment operators

Synopses

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;

Move assignment is disabled; a moved‐from Ref would leave two Refs for one entry.

Ref&
operator=(Ref&& other) noexcept = delete;

Parameters

Name

Description

other

The Ref being assigned from.

Created with MrDocs