github.com/benz9527/toy-box/algo@v0.0.0-20240221120937-66c0c6bd5abd/bitmap/bitmap_intf.go (about) 1 package bitmap 2 3 type Bitmap interface { 4 SetBit(offset uint64, one bool) bool 5 GetBit(offset uint64) bool 6 GetBits() []byte 7 EqualTo(bm Bitmap) bool 8 Free() 9 }