[#TxGraph-Ref-operator_assign-01] = xref:TxGraph.adoc[TxGraph]::xref:TxGraph/Ref.adoc[Ref]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<txgraph.h>` Copy assignment is disabled: a TxGraph entry can have at most one Ref pointing to it. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:TxGraph/Ref.adoc[Ref]& xref:TxGraph/Ref/operator_assign-06.adoc[operator=](xref:TxGraph/Ref.adoc[Ref] const& other) = delete; ---- [.small]#xref:TxGraph/Ref/operator_assign-06.adoc[_» more..._]# Move assignment is disabled; a moved‐from Ref would leave two Refs for one entry. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:TxGraph/Ref.adoc[Ref]& xref:TxGraph/Ref/operator_assign-00.adoc[operator=](xref:TxGraph/Ref.adoc[Ref]&& other) noexcept = delete; ---- [.small]#xref:TxGraph/Ref/operator_assign-00.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *other* | The Ref being assigned from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#