From 95402fefb34e958f948af0489f1b435328cf0af4 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 25 Dec 2023 11:10:03 -0500 Subject: [PATCH] saving... --- bitset.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitset.go b/bitset.go index 452b8d5..9f38ed3 100644 --- a/bitset.go +++ b/bitset.go @@ -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 "."