Implementation details backing the BitSet alias.
| Name | Description |
|---|---|
IntBitSet | A bitset implementation backed by a single integer of type I. |
MultiIntBitSet | A bitset implementation backed by N integers of type I. |
| Name | Description |
|---|---|
PopCount | Count the number of bits set in an unsigned integer type. |
operator& | Return an object with the binary AND between respective bits from a and b. |
operator- | Return an object with the binary AND NOT between respective bits from a and b. |
operator^ | Return an object with the binary XOR between respective bits from a and b. |
operator| | Return an object with the binary OR between respective bits from a and b. |
swap | Swap two bitsets. |
operator== | Equality operators |