Add comment

This commit is contained in:
Richard Artoul 2018-11-29 14:26:57 -05:00
parent defcb40f8c
commit 7931bc2c37

View file

@ -592,6 +592,10 @@ func (b *Bitmap) unionIntoTarget(target *Bitmap, others ...*Bitmap) {
otherIters[j].handled = true
}
}
// Now that we've calculated a container is that a union of all the containers
// with the same key across all the bitmaps, we store it in the list of containers
// for the target.
target.Containers.Put(iKey, container)
}
}