| 224 | } |
| 225 | |
| 226 | inline bool Clear(uint32_t index) |
| 227 | { |
| 228 | if (index >= NumBits) { |
| 229 | return false; |
| 230 | } |
| 231 | |
| 232 | Bits[index >> IndexBitsPerWord] &= ~(TWord(1) << (index & (BitsPerWord - 1))); |
| 233 | return true; |
| 234 | } |
| 235 | |
| 236 | inline bool IsSet(uint32_t index) const |
| 237 | { |
nothing calls this directly
no outgoing calls
no test coverage detected