| 279 | } |
| 280 | |
| 281 | bool Get(int index) const { |
| 282 | assert(index < array_size); |
| 283 | return bit_array.GetBit(index); |
| 284 | } |
| 285 | |
| 286 | bool operator[](int index) const { return Get(index); } |
| 287 | cBitProxy operator[](int index) { return cBitProxy(*this, index); } |
no test coverage detected