func go/constant.Uint64Val

6 uses

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

	go/types
		conversions.go#L31: 			if i, ok := constant.Uint64Val(x.val); ok && i <= unicode.MaxRune {
		expr.go#L669: 			s, ok := constant.Uint64Val(yval)
		expr.go#L1195: 		if v, ok := constant.Uint64Val(x); ok {
		stmt.go#L208: 		if x, ok := constant.Uint64Val(val); ok {

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