goimagehash/imagehash19.go
2024-04-05 17:29:30 -06:00

11 lines
137 B
Go

//go:build go1.9
// +build go1.9
package goimagehash
import (
"math/bits"
)
func popcnt(x uint64) int { return bits.OnesCount64(x) }