/bit

Bitset implementation in Go

Primary LanguageGoMIT LicenseMIT

Go Report Card

BitSet

Package bit implements vector of bits that grows as needed. Basically it is a memory-effiecent version of array of boolean: []bool. All the methods implemented in this package inspired by Java's BitSet. See documentation.