| 94 | bool operator[](int64_t i) const { return GetBit(i); } |
| 95 | |
| 96 | void SetBitTo(int64_t i, bool v) const { |
| 97 | bit_util::SetBitTo(mutable_data_, i + offset_, v); |
| 98 | } |
| 99 | |
| 100 | void SetBitsTo(bool v) { bit_util::SetBitsTo(mutable_data_, offset_, length_, v); } |
| 101 |
no outgoing calls