[#bitset_detail-IntBitSet-operator_assign-02] = xref:bitset_detail.adoc[bitset_detail]::xref:bitset_detail/IntBitSet.adoc[IntBitSet]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<util/bitset.h>` Copy assign a bitset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet.adoc[IntBitSet]& xref:bitset_detail/IntBitSet/operator_assign-07.adoc[operator=](xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& other) noexcept = default; ---- [.small]#xref:bitset_detail/IntBitSet/operator_assign-07.adoc[_» more..._]# Assign from a list of positions (which will be made true, all others false). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet.adoc[IntBitSet]& xref:bitset_detail/IntBitSet/operator_assign-05.adoc[operator=](std::initializer_list<unsigned int> ilist) noexcept; ---- [.small]#xref:bitset_detail/IntBitSet/operator_assign-05.adoc[_» more..._]# == Return Value A reference to this bitset. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The bitset to copy from. | *ilist* | The bit positions to set to 1. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#