(a []int, b *Bitmap)
| 2617 | } |
| 2618 | |
| 2619 | func equalsArray(a []int, b *Bitmap) bool { |
| 2620 | if uint64(len(a)) != b.GetCardinality() { |
| 2621 | return false |
| 2622 | } |
| 2623 | for _, x := range a { |
| 2624 | if !b.ContainsInt(x) { |
| 2625 | return false |
| 2626 | } |
| 2627 | } |
| 2628 | return true |
| 2629 | } |
| 2630 | |
| 2631 | func IntsEquals(a, b []uint32) bool { |
| 2632 | if len(a) != len(b) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…