True if no bits are 1 */
| 66 | |
| 67 | /** True if no bits are 1 */ |
| 68 | bool empty() const {return _bits == 0;} |
| 69 | |
| 70 | /** True if the bit at index `bitNo` (with 0 being the LSB) is 1. */ |
| 71 | bool containsBit(unsigned bitNo) const {return (_bits & mask(bitNo)) != 0;} |
no outgoing calls
no test coverage detected