[#prevector-01-operator_assign-08] = xref:prevector-01.adoc[prevector<36, unsigned char>]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<prevector.h>` Copy‐assigns the contents of `other` to this container. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:prevector-0c.adoc[prevector<36, unsigned char>]& xref:prevector-01/operator_assign-008.adoc[operator=](xref:prevector-0c.adoc[prevector<36U, unsigned char, unsigned int, int>] const& other); ---- [.small]#xref:prevector-01/operator_assign-008.adoc[_» more..._]# Move‐assigns the contents of `other` to this container, leaving it empty. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:prevector-0c.adoc[prevector<36, unsigned char>]& xref:prevector-01/operator_assign-007.adoc[operator=](xref:prevector-0c.adoc[prevector<36U, unsigned char, unsigned int, int>]&& other) noexcept; ---- [.small]#xref:prevector-01/operator_assign-007.adoc[_» more..._]# == Return Value A reference to this container. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The container to copy from. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#