1 // +build go1.9 2 3 package bitset 4 5 import "math/bits" 6 7 func trailingZeroes64(v uint64) uint { 8 return uint(bits.TrailingZeros64(v)) 9 } 10
View as plain text