[#CScriptCheck-operator_assign-0eb] = xref:CScriptCheck.adoc[CScriptCheck]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<validation.h>` Copy assignment is disabled. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CScriptCheck.adoc[CScriptCheck]& xref:CScriptCheck/operator_assign-0c.adoc[operator=](xref:CScriptCheck.adoc[CScriptCheck] const& other) = delete; ---- [.small]#xref:CScriptCheck/operator_assign-0c.adoc[_» more..._]# Move assignment is defaulted. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:CScriptCheck.adoc[CScriptCheck]& xref:CScriptCheck/operator_assign-0e0.adoc[operator=](xref:CScriptCheck.adoc[CScriptCheck]&& other) = default; ---- [.small]#xref:CScriptCheck/operator_assign-0e0.adoc[_» more..._]# == Return Value Reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The instance that would be assigned from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#