AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint32 and we call Add)
(x int)
| 1203 | |
| 1204 | // AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint32 and we call Add) |
| 1205 | func (rb *Bitmap) AddInt(x int) { |
| 1206 | rb.Add(uint32(x)) |
| 1207 | } |
| 1208 | |
| 1209 | // Remove the integer x from the bitmap |
| 1210 | func (rb *Bitmap) Remove(x uint32) { |