[#prevector-0c-operator_assign-0e] = xref:prevector-0c.adoc[prevector]::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]& xref:prevector-0c/operator_assign-06.adoc[operator=](xref:prevector-0c.adoc[prevector<N, T, Size, Diff>] const& other); ---- [.small]#xref:prevector-0c/operator_assign-06.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]& xref:prevector-0c/operator_assign-0d.adoc[operator=](xref:prevector-0c.adoc[prevector<N, T, Size, Diff>]&& other) noexcept; ---- [.small]#xref:prevector-0c/operator_assign-0d.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]#