[#bitset_detail-IntBitSet-2constructor-0c] = xref:bitset_detail.adoc[bitset_detail]::xref:bitset_detail/IntBitSet.adoc[IntBitSet]::IntBitSet :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/IntBitSet/2constructor-0f.adoc[IntBitSet]() noexcept; ---- [.small]#xref:bitset_detail/IntBitSet/2constructor-0f.adoc[_» more..._]# Copy construct a bitset. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet/2constructor-00.adoc[IntBitSet](xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& other) noexcept = default; ---- [.small]#xref:bitset_detail/IntBitSet/2constructor-00.adoc[_» more..._]# Construct from a list of values. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet/2constructor-01.adoc[IntBitSet](std::initializer_list<unsigned int> ilist) noexcept; ---- [.small]#xref:bitset_detail/IntBitSet/2constructor-01.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]#