Skip to content

Commit

Permalink
saving...
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Dec 25, 2023
1 parent f70586a commit 95402fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bitset.go
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,8 @@ func (b *BitSet) IsStrictSuperSet(other *BitSet) bool {
return b.Count() > other.Count() && b.IsSuperSet(other)
}

// DumpAsBits dumps a bit set as a string of bits
// DumpAsBits dumps a bit set as a string of bits. Following the usual convention in Go,
// the least significant bits are printed last (index 0 is at the end of the string).
func (b *BitSet) DumpAsBits() string {
if b.set == nil {
return "."
Expand Down

0 comments on commit 95402fe

Please sign in to comment.