Minimum get the smallest value stored in this roaring bitmap, assumes that it is not empty
()
| 292 | |
| 293 | // Minimum get the smallest value stored in this roaring bitmap, assumes that it is not empty |
| 294 | func (rb *Bitmap) Minimum() uint64 { |
| 295 | return uint64(rb.highlowcontainer.containers[0].Minimum()) | (uint64(rb.highlowcontainer.keys[0]) << 32) |
| 296 | } |
| 297 | |
| 298 | // Maximum get the largest value stored in this roaring bitmap, assumes that it is not empty |
| 299 | func (rb *Bitmap) Maximum() uint64 { |
no outgoing calls