[#bitset_detail-MultiIntBitSet-2constructor-08] = xref:bitset_detail.adoc[bitset_detail]::xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet]::MultiIntBitSet :relfileprefix: ../../ :mrdocs: Constructors == Synopses Declared in `<util/bitset.h>` Construct an all‐zero bitset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/MultiIntBitSet/2constructor-0b.adoc[MultiIntBitSet]() noexcept; ---- [.small]#xref:bitset_detail/MultiIntBitSet/2constructor-0b.adoc[_» more..._]# Copy construct a bitset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/MultiIntBitSet/2constructor-0ff.adoc[MultiIntBitSet](xref:bitset_detail/MultiIntBitSet.adoc[MultiIntBitSet] const& other) noexcept = default; ---- [.small]#xref:bitset_detail/MultiIntBitSet/2constructor-0ff.adoc[_» more..._]# Construct a bitset from a list of values. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/MultiIntBitSet/2constructor-0fd.adoc[MultiIntBitSet](std::initializer_list<unsigned int> ilist) noexcept; ---- [.small]#xref:bitset_detail/MultiIntBitSet/2constructor-0fd.adoc[_» more..._]# == 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]#