Versions in this module Expand all Collapse all v1 v1.0.0 Jul 1, 2015 Changes in this version + type BitSet interface + Get func(i int) bool + Set func(i int) + SetBool func(i int, b bool) + Unset func(i int) + type Bytes []byte + func NewBytes(numBits int) Bytes + func (s *Bytes) Grow(numBits int) + func (s Bytes) Get(i int) bool + func (s Bytes) Set(i int) + func (s Bytes) SetBool(i int, b bool) + func (s Bytes) Unset(i int) + type Pointers []uintptr + func NewPointers(numBits int) Pointers + func (p *Pointers) Grow(numBits int) + func (p Pointers) Get(i int) bool + func (p Pointers) Set(i int) + func (p Pointers) SetBool(i int, b bool) + func (p Pointers) Unset(i int) + type Sparse map[int]uintptr + func (s Sparse) Get(i int) bool + func (s Sparse) Set(i int) + func (s Sparse) SetBool(i int, b bool) + func (s Sparse) Unset(i int)