GoCollections/lang/BitSet.go

9 lines
102 B
Go

package lang
type (
BitSet interface {
BitLength() int
SetBit(bit int, up bool) (old bool)
}
)