AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint64 and we call Add)
(x int)
| 348 | |
| 349 | // AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint64 and we call Add) |
| 350 | func (rb *Bitmap) AddInt(x int) { |
| 351 | rb.Add(uint64(x)) |
| 352 | } |
| 353 | |
| 354 | // Remove the integer x from the bitmap |
| 355 | func (rb *Bitmap) Remove(x uint64) { |