mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
fix bug
This commit is contained in:
parent
b77c8a630b
commit
d3606e274d
1 changed files with 1 additions and 0 deletions
|
|
@ -398,6 +398,7 @@ func (b *Bitmap) Intersect(other *Bitmap) *Bitmap {
|
|||
// Union returns the bitwise union of b and other.
|
||||
func (b *Bitmap) Union(others ...*Bitmap) *Bitmap {
|
||||
output := NewBitmap()
|
||||
output.UnionInPlace(b)
|
||||
output.UnionInPlace(others...)
|
||||
return output
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue