bitset_detail::operator==

Check if bitset a and bitset b are identical.

Synopsis

Declared in <util/bitset.h>

constexpr
bool
operator==(
    IntBitSet const& a,
    IntBitSet const& b) noexcept = default;

Return Value

true if a and b have the same bits set.

Parameters

NameDescription
aThe left-hand bitset.
bThe right-hand bitset.