Versions in this module Expand all Collapse all v1 v1.0.1 Feb 22, 2023 v1.0.0 Nov 16, 2022 Changes in this version + type BitSet struct + func New(init ...byte) *BitSet + func NewFromHex(s string) (*BitSet, error) + func (b *BitSet) And(bitSets ...*BitSet) *BitSet + func (b *BitSet) AndNot(bitSet ...*BitSet) *BitSet + func (b *BitSet) Binary(sep string) string + func (b *BitSet) Bytes() []byte + func (b *BitSet) Clear() + func (b *BitSet) Count(start, end int) int + func (b *BitSet) Get(offset int) bool + func (b *BitSet) Not() *BitSet + func (b *BitSet) Or(bitSet ...*BitSet) *BitSet + func (b *BitSet) Range(f func(offset int, truth bool) bool) + func (b *BitSet) Set(offset int, value bool) (bool, error) + func (b *BitSet) Size() int + func (b *BitSet) String() string + func (b *BitSet) Sub(start, end int) *BitSet + func (b *BitSet) Xor(bitSet ...*BitSet) *BitSet