[#bitdeque-operator_assign-05] = xref:bitdeque.adoc[bitdeque]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<util/bitdeque.h>` Copy assignment operator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bitdeque.adoc[bitdeque]& xref:bitdeque/operator_assign-0e.adoc[operator=](xref:bitdeque.adoc[bitdeque] const& other) = default; ---- [.small]#xref:bitdeque/operator_assign-0e.adoc[_» more..._]# Move assignment operator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bitdeque.adoc[bitdeque]& xref:bitdeque/operator_assign-0c.adoc[operator=](xref:bitdeque.adoc[bitdeque]&& other) noexcept = default; ---- [.small]#xref:bitdeque/operator_assign-0c.adoc[_» more..._]# Set the container equal to the bits in ilist. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bitdeque.adoc[bitdeque]& xref:bitdeque/operator_assign-06.adoc[operator=](std::initializer_list<bool> ilist); ---- [.small]#xref:bitdeque/operator_assign-06.adoc[_» more..._]# == Return Value Reference to this container. == Parameters [cols="1,4"] |=== | Name| Description | *other* | Container to copy from. | *ilist* | Initializer list of bit values to copy. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#