GetSetBits gets the position of bits set in the array. Will return as many set bits as can fit in the provided buffer starting from the specified position in the array.
(from uint64, buffer []uint64)
| 40 | // return as many set bits as can fit in the provided buffer |
| 41 | // starting from the specified position in the array. |
| 42 | GetSetBits(from uint64, buffer []uint64) []uint64 |
| 43 | // ClearBit clears the bit at the given position. This |
| 44 | // function returns an error if the position is out |
| 45 | // of range. A sparse bit array never returns an error. |
no outgoing calls