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