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

Method appendCopyMany

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

Source from the content-addressed store, hash-verified

63}
64
65func (ra *roaringArray64) appendCopyMany(sa roaringArray64, startingindex, end int) {
66 for i := startingindex; i < end; i++ {
67 ra.appendCopy(sa, i)
68 }
69}
70
71func (ra *roaringArray64) appendCopiesUntil(sa roaringArray64, stoppingKey uint32) {
72 // cow only if the two request it, or if we already have a lightweight copy

Callers 5

XorMethod · 0.45
OrMethod · 0.45
OrFunction · 0.45
XorFunction · 0.45
AndNotFunction · 0.45

Calls 1

appendCopyMethod · 0.95

Tested by

no test coverage detected