(b *testing.B)
| 140 | } |
| 141 | |
| 142 | func BenchmarkRealDataNext(b *testing.B) { |
| 143 | benchmarkRealDataAggregate(b, func(bitmaps []*Bitmap) uint64 { |
| 144 | tot := uint64(0) |
| 145 | for _, b := range bitmaps { |
| 146 | it := b.Iterator() |
| 147 | for it.HasNext() { |
| 148 | tot += uint64(it.Next()) |
| 149 | } |
| 150 | } |
| 151 | return tot |
| 152 | }) |
| 153 | } |
| 154 | |
| 155 | func BenchmarkRealDataNextMany(b *testing.B) { |
| 156 | benchmarkRealDataAggregate(b, func(bitmaps []*Bitmap) uint64 { |
nothing calls this directly
no test coverage detected
searching dependent graphs…