const go/types.IsNumeric

5 uses

	go/types (current package)
		basic.go#L61: 	IsNumeric   = IsInteger | IsFloat | IsComplex
		basic.go#L62: 	IsConstType = IsBoolean | IsNumeric | IsString
		predicates.go#L20: func isNumeric(t Type) bool        { return isBasic(t, IsNumeric) }
		predicates.go#L42: func allNumeric(typ Type) bool         { return allBasic(typ, IsNumeric) }
		predicates.go#L45: func allNumericOrString(typ Type) bool { return allBasic(typ, IsNumeric|IsString) }