Skip to content

Commit

Permalink
Update arraycontainer.go
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Mar 12, 2021
1 parent 4f9df8a commit d626fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arraycontainer.go
Expand Up @@ -483,7 +483,7 @@ func (ac *arrayContainer) orArrayCardinality(value2 *arrayContainer) int {
func (ac *arrayContainer) lazyorArray(value2 *arrayContainer) container {
value1 := ac
maxPossibleCardinality := value1.getCardinality() + value2.getCardinality()
if maxPossibleCardinality > arrayLazyLowerBound { // it could be a bitmap!^M
if maxPossibleCardinality > arrayLazyLowerBound { // it could be a bitmap!
bc := newBitmapContainer()
for k := 0; k < len(value2.content); k++ {
v := value2.content[k]
Expand Down

0 comments on commit d626fca

Please sign in to comment.