Clone creates a copy of the Bitmap
()
| 1034 | |
| 1035 | // Clone creates a copy of the Bitmap |
| 1036 | func (rb *Bitmap) Clone() *Bitmap { |
| 1037 | ptr := new(Bitmap) |
| 1038 | ptr.highlowcontainer = *rb.highlowcontainer.clone() |
| 1039 | return ptr |
| 1040 | } |
| 1041 | |
| 1042 | // Minimum get the smallest value stored in this roaring bitmap, assumes that it is not empty |
| 1043 | func (rb *Bitmap) Minimum() uint32 { |