[#RandomMixin-01-operator_assign-09] = xref:RandomMixin-01.adoc[RandomMixin]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<random.h>` Deleted copy assignment; an RNG must not be copied. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:RandomMixin-01.adoc[RandomMixin]& xref:RandomMixin-01/operator_assign-0d.adoc[operator=](xref:RandomMixin-01.adoc[RandomMixin] const& other) = delete; ---- [.small]#xref:RandomMixin-01/operator_assign-0d.adoc[_» more..._]# Deleted move assignment; an RNG must not be moved. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:RandomMixin-01.adoc[RandomMixin]& xref:RandomMixin-01/operator_assign-0c.adoc[operator=](xref:RandomMixin-01.adoc[RandomMixin]&& other) = delete; ---- [.small]#xref:RandomMixin-01/operator_assign-0c.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *other* | The instance that would be assigned from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#