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 c579ab5 commit 35c9afaCopy full SHA for 35c9afa
roaring.go
@@ -438,6 +438,9 @@ func (rb *Bitmap) toArray(array *[]uint32) *[]uint32 {
438
return array
439
}
440
441
+// ToExistingArray stores all of the integers stored in the Bitmap in sorted order in the
442
+// slice that is given to ToExistingArray. It is the callers duty to make sure the slice
443
+// has the right size.
444
func (rb *Bitmap) ToExistingArray(array *[]uint32) *[]uint32 {
445
return rb.toArray(array)
446
0 commit comments