mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// +build go1.9
 | 
						|
 | 
						|
package bitset
 | 
						|
 | 
						|
import "math/bits"
 | 
						|
 | 
						|
func trailingZeroes64(v uint64) uint {
 | 
						|
	return uint(bits.TrailingZeros64(v))
 | 
						|
}
 |