We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb67118 commit b705c37Copy full SHA for b705c37
roaring64/roaring64.go
@@ -346,7 +346,7 @@ func (rb *Bitmap) CheckedAdd(x uint64) bool {
346
return true
347
}
348
349
-// AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint32 and we call Add)
+// AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint64 and we call Add)
350
func (rb *Bitmap) AddInt(x int) {
351
rb.Add(uint64(x))
352
0 commit comments