| 274 | int GetSize() const { return array_size; } |
| 275 | |
| 276 | void Set(int index, bool value) { |
| 277 | assert(index < array_size); |
| 278 | bit_array.SetBit(index, value); |
| 279 | } |
| 280 | |
| 281 | bool Get(int index) const { |
| 282 | assert(index < array_size); |
no test coverage detected