MCPcopy
hub / github.com/RoaringBitmap/roaring / appendWithoutCopyMany

Method appendWithoutCopyMany

roaringarray.go:170–174  ·  view source on GitHub ↗
(sa roaringArray, startingindex, end int)

Source from the content-addressed store, hash-verified

168}
169
170func (ra *roaringArray) appendWithoutCopyMany(sa roaringArray, startingindex, end int) {
171 for i := startingindex; i < end; i++ {
172 ra.appendWithoutCopy(sa, i)
173 }
174}
175
176func (ra *roaringArray) appendCopyMany(sa roaringArray, startingindex, end int) {
177 for i := startingindex; i < end; i++ {

Callers

nothing calls this directly

Calls 1

appendWithoutCopyMethod · 0.95

Tested by

no test coverage detected