Equality operators
Declared in <util/bitset.h>
Check if bitset a and bitset b are identical.
constexpr
bool
operator==(
IntBitSet const& a,
IntBitSet const& b) noexcept = default;
» more...
Test whether we are done (can only compare with IteratorEnd).
constexpr
bool
operator==(
Iterator const& a,
IteratorEnd const& end) noexcept;
» more...
Check if bitset a and bitset b are identical.
constexpr
bool
operator==(
MultiIntBitSet const& a,
MultiIntBitSet const& b) noexcept = default;
» more...
Test whether we are done (can only compare with IteratorEnd).
constexpr
bool
operator==(
Iterator const& a,
IteratorEnd const& end) noexcept;
» more...
| Name | Description |
|---|---|
| a | The left-hand bitset. |
| b | The right-hand bitset. |
| end | The end sentinel to compare against. |