RunOptimize attempts to further compress the runs of consecutive values found in the bitmap
()
| 395 | |
| 396 | // RunOptimize attempts to further compress the runs of consecutive values found in the bitmap |
| 397 | func (rb *Bitmap) RunOptimize() { |
| 398 | rb.highlowcontainer.runOptimize() |
| 399 | } |
| 400 | |
| 401 | // HasRunCompression returns true if the bitmap benefits from run compression |
| 402 | func (rb *Bitmap) HasRunCompression() bool { |