package
0.0.0-20150211160725-59788d5eb259
Repository: https://github.com/golang-collections/go-datastructures.git
Documentation: pkg.go.dev

# Functions

NewBitArray returns a new BitArray at the specified size.
NewSparseBitArray will create a bit array that consumes a great deal less memory at the expense of longer sets and gets.

# Interfaces

BitArray represents a structure that can be used to quickly check for existence when using a large number of items in a very memory efficient way.
Iterator defines methods used to iterate over a bit array.

# Type aliases

OutOfRangeError is an error caused by trying to access a bitarray past the end of its capacity.