You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package main
import (
"github.com/althk/bm"
)
funcmain() {
bmap:=bm.New(16) // initialize a bitmap of 16 bits size// set a few bits_=bmap.Set(2)
_=bmap.Set(3)
// it is an error when trying to set a -ve bit or one larger// than the size.err:=bmap.Set(100)
// errors.Is(err, bm.ErrOutOfBounds)// check if a bit is setifbmap.IsSet(2) {
// do something when bit 2 is set
}
// Clear the bit after work_=bmap.Clear(2)
}