SetBit sets 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)
| 32 | // function returns an error if the position is out |
| 33 | // of range. A sparse bit array never returns an error. |
| 34 | SetBit(k uint64) error |
| 35 | // GetBit gets the bit at the given position. This |
| 36 | // function returns an error if the position is out |
| 37 | // of range. A sparse bit array never returns an error. |
no outgoing calls