GetBit gets the bit at the given position. This function returns an error if the position is out of range. A sparse bit array never returns an error.
(k uint64)
| 36 | // function returns an error if the position is out |
| 37 | // of range. A sparse bit array never returns an error. |
| 38 | GetBit(k uint64) (bool, error) |
| 39 | // GetSetBits gets the position of bits set in the array. Will |
| 40 | // return as many set bits as can fit in the provided buffer |
| 41 | // starting from the specified position in the array. |
no outgoing calls