mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 11:10:47 -05:00
Bumps [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) from 2.3.7 to 2.3.9. - [Release notes](https://github.com/blevesearch/bleve/releases) - [Commits](https://github.com/blevesearch/bleve/compare/v2.3.7...v2.3.9) --- updated-dependencies: - dependency-name: github.com/blevesearch/bleve/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
247 B
Go
14 lines
247 B
Go
//go:build go1.9
|
|
// +build go1.9
|
|
|
|
// "go1.9", from Go version 1.9 onward
|
|
// See https://golang.org/pkg/go/build/#hdr-Build_Constraints
|
|
|
|
package roaring
|
|
|
|
import "math/bits"
|
|
|
|
func countTrailingZeros(x uint64) int {
|
|
return bits.TrailingZeros64(x)
|
|
}
|