mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 12:20:16 +01:00
9 lines
132 B
Go
Vendored
9 lines
132 B
Go
Vendored
// +build go1.9
|
|
|
|
package bitset
|
|
|
|
import "math/bits"
|
|
|
|
func trailingZeroes64(v uint64) uint {
|
|
return uint(bits.TrailingZeros64(v))
|
|
}
|