MultiIntBitSet [constructor] | Constructors |
operator= | Assignment operators |
Any | Check if any bits are 1. |
Count | Compute the number of 1 bits in the bitset. |
First | Find the first element (requires Any()). |
IsSubsetOf | Check if bitset a is a subset of bitset b (= every 1 bit in a is also in b). |
IsSupersetOf | Check if bitset a is a superset of bitset b (= every 1 bit in b is also in a). |
Last | Find the last element (requires Any()). |
None | Check if all bits are 0. |
Overlaps | Check whether the intersection between two sets is non-empty. |
Reset | Set a bit to 0. |
Set | Set overloads |
begin | Return an object that iterates over all 1 bits (++ and * only allowed when != end()). |
end | Return a dummy object to compare Iterators with. |
operator&= | Set this object's bits to be the binary AND between respective bits from this and a. |
operator-= | Set this object's bits to be the binary AND NOT between respective bits from this and a. |
operator[] | Retrieve a bit at the given position. |
operator^= | Set this object's bits to be the binary XOR between respective bits from this and a. |
operator|= | Set this object's bits to be the binary OR between respective bits from this and a. |