mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-24 02:15:50 +08:00
Conflicts: Gopkg.lock pkg/appsrv/appsrv.go pkg/cloudcommon/options.go pkg/compute/models/hosts.go pkg/compute/models/quotas.go pkg/compute/service/service.go pkg/mcclient/mcclient.go
24 lines
348 B
Go
24 lines
348 B
Go
package roaring
|
|
|
|
type manyIterable interface {
|
|
nextMany(hs uint32, buf []uint32) int
|
|
}
|
|
|
|
type manyIterator struct {
|
|
slice []uint16
|
|
loc int
|
|
}
|
|
|
|
func (si *manyIterator) nextMany(hs uint32, buf []uint32) int {
|
|
n := 0
|
|
l := si.loc
|
|
s := si.slice
|
|
for n < len(buf) && l < len(s) {
|
|
buf[n] = uint32(s[l]) | hs
|
|
l++
|
|
n++
|
|
}
|
|
si.loc = l
|
|
return n
|
|
}
|