Tests the bit with index c.
| 29 | |
| 30 | // Tests the bit with index c. |
| 31 | bool Test(int c) const { |
| 32 | DCHECK_GE(c, 0); |
| 33 | DCHECK_LE(c, 255); |
| 34 | |
| 35 | return (words_[c / 64] & (uint64_t{1} << (c % 64))) != 0; |
| 36 | } |
| 37 | |
| 38 | // Sets the bit with index c. |
| 39 | void Set(int c) { |
no outgoing calls
no test coverage detected