RunOptimize attempts to further compress the runs of consecutive values found in the bitmap
()
| 189 | |
| 190 | // RunOptimize attempts to further compress the runs of consecutive values found in the bitmap |
| 191 | func (rb *Bitmap) RunOptimize() { |
| 192 | rb.highlowcontainer.runOptimize() |
| 193 | } |
| 194 | |
| 195 | // HasRunCompression returns true if the bitmap benefits from run compression |
| 196 | func (rb *Bitmap) HasRunCompression() bool { |