bitset_detail::operator&

Return an object with the binary AND between respective bits from a and b.

Synopsis

Declared in <util/bitset.h>

constexpr
MultiIntBitSet
operator&(
    MultiIntBitSet const& a,
    MultiIntBitSet const& b) noexcept;

Return Value

The intersection of a and b.

Parameters

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