func go/constant.Uint64Val

6 uses

	go/constant (current package)
		value.go#L511: func Uint64Val(x Value) (uint64, bool) {

	go/types
		conversions.go#L27: 			if i, ok := constant.Uint64Val(x.val); ok && i <= unicode.MaxRune {
		expr.go#L974: 			s, ok := constant.Uint64Val(y.val)
		expr.go#L1669: 		if v, ok := constant.Uint64Val(x); ok {
		stmt.go#L210: 		if x, ok := constant.Uint64Val(val); ok {

	golang.org/x/tools/internal/gcimporter
		iexport.go#L923: 		} else if ui64, exact := constant.Uint64Val(v); exact {