| 249 | } |
| 250 | |
| 251 | inline bool Get(uint32_t index) const |
| 252 | { |
| 253 | se_assert(index < Size); |
| 254 | return (Buf[index / 64] & (1ull << (index % 64))) != 0; |
| 255 | } |
| 256 | |
| 257 | inline bool operator [] (uint32_t index) const |
| 258 | { |
nothing calls this directly
no outgoing calls
no test coverage detected