| 103 | } |
| 104 | |
| 105 | type sparseBitArray struct { |
| 106 | blocks blocks |
| 107 | indices uintSlice |
| 108 | } |
| 109 | |
| 110 | // SetBit sets the bit at the given position. |
| 111 | func (sba *sparseBitArray) SetBit(k uint64) error { |
nothing calls this directly
no outgoing calls
no test coverage detected