Versions in this module Expand all Collapse all v1 v1.6.0 Sep 9, 2025 Changes in this version + const MaxIndex type Bitmap + func (b *Bitmap) MarshalBinary() ([]byte, error) + func (b *Bitmap) UnmarshalBinary(in []byte) error type Option + func OptDisableLock() Option + func OptMaxIndex(index uint64) Option v1.5.2 Aug 4, 2025 Changes in this version + type Bitmap struct + func New(maxIndex uint64, opts ...Option) *Bitmap + func (b *Bitmap) CopyTo(dst *Bitmap) + func (b *Bitmap) Del(index uint64) + func (b *Bitmap) Dump() []byte + func (b *Bitmap) Has(index uint64) bool + func (b *Bitmap) Restore(in []byte) + func (b *Bitmap) Set(index uint64) + type Option func(*Bitmap) + func DisableLock() Option