Constructors

Synopses

Declared in <util/bitset.h>

Construct an all‐zero bitset.

constexpr
IntBitSet() noexcept;

Copy construct a bitset.

constexpr
IntBitSet(IntBitSet const& other) noexcept = default;

Construct from a list of values.

constexpr
IntBitSet(std::initializer_list<unsigned int> ilist) noexcept;

Parameters

Name

Description

other

The bitset to copy from.

ilist

The bit positions to set to 1.

Created with MrDocs