bitArray is a struct that maintains state of a bit array.
| 24 | |
| 25 | // bitArray is a struct that maintains state of a bit array. |
| 26 | type bitArray struct { |
| 27 | blocks []block |
| 28 | lowest uint64 |
| 29 | highest uint64 |
| 30 | anyset bool |
| 31 | } |
| 32 | |
| 33 | func getIndexAndRemainder(k uint64) (uint64, uint64) { |
| 34 | return k / s, k % s |
nothing calls this directly
no outgoing calls
no test coverage detected