| 234 | } |
| 235 | |
| 236 | inline bool IsSet(uint32_t index) const |
| 237 | { |
| 238 | if (index >= NumBits) { |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | return (Bits[index >> IndexBitsPerWord] & (TWord(1) << (index & (BitsPerWord - 1)))) != 0; |
| 243 | } |
| 244 | |
| 245 | inline uint32_t size() const |
| 246 | { |
no outgoing calls
no test coverage detected