ContainsInt returns true if the integer is contained in the bitmap (this is a convenience method, the parameter is casted to uint32 and Contains is called)
(x int)
| 1065 | |
| 1066 | // ContainsInt returns true if the integer is contained in the bitmap (this is a convenience method, the parameter is casted to uint32 and Contains is called) |
| 1067 | func (rb *Bitmap) ContainsInt(x int) bool { |
| 1068 | return rb.Contains(uint32(x)) |
| 1069 | } |
| 1070 | |
| 1071 | // Equals returns true if the two bitmaps contain the same integers |
| 1072 | func (rb *Bitmap) Equals(o interface{}) bool { |