HasRunCompression returns true if the bitmap benefits from run compression
()
| 400 | |
| 401 | // HasRunCompression returns true if the bitmap benefits from run compression |
| 402 | func (rb *Bitmap) HasRunCompression() bool { |
| 403 | return rb.highlowcontainer.hasRunCompression() |
| 404 | } |
| 405 | |
| 406 | // MarshalBinary implements the encoding.BinaryMarshaler interface for the bitmap |
| 407 | // (same as ToBytes) |
nothing calls this directly
no test coverage detected