MCPcopy Create free account
hub / github.com/RoaringBitmap/roaring / appendWithoutCopyMany

Method appendWithoutCopyMany

roaring64/roaringarray64.go:59–63  ·  view source on GitHub ↗
(sa roaringArray64, startingindex, end int)

Source from the content-addressed store, hash-verified

57}
58
59func (ra *roaringArray64) appendWithoutCopyMany(sa roaringArray64, startingindex, end int) {
60 for i := startingindex; i < end; i++ {
61 ra.appendWithoutCopy(sa, i)
62 }
63}
64
65func (ra *roaringArray64) appendCopyMany(sa roaringArray64, startingindex, end int) {
66 for i := startingindex; i < end; i++ {

Callers

nothing calls this directly

Calls 1

appendWithoutCopyMethod · 0.95

Tested by

no test coverage detected