func fmt.Sprint

33 uses

	fmt (current package)
		print.go#L277: func Sprint(a ...any) string {

	crypto/x509/pkix
		pkix.go#L64: 			valueString := fmt.Sprint(tv.Value)

	github.com/google/go-cmp/cmp
		options.go#L94: 		ss = append(ss, fmt.Sprint(opt))
		options.go#L103: 		ss = append(ss, fmt.Sprint(opt))
		report_reflect.go#L164: 		return textLine(fmt.Sprint(v.Bool()))
		report_reflect.go#L166: 		return textLine(fmt.Sprint(v.Int()))
		report_reflect.go#L168: 		return textLine(fmt.Sprint(v.Uint()))
		report_reflect.go#L173: 		return textLine(fmt.Sprint(v.Uint()))
		report_reflect.go#L177: 		return textLine(fmt.Sprint(v.Float()))
		report_reflect.go#L179: 		return textLine(fmt.Sprint(v.Complex()))
		report_slices.go#L305: 						ss = append(ss, fmt.Sprint(v.Index(i).Int()))
		report_slices.go#L307: 						ss = append(ss, fmt.Sprint(v.Index(i).Uint()))
		report_slices.go#L311: 						ss = append(ss, fmt.Sprint(v.Index(i).Interface()))

	go.uber.org/zap
		sugar.go#L326: 	return fmt.Sprint(fmtArgs...)

	google.golang.org/grpc/attributes
		attributes.go#L126: 		return fmt.Sprint(v)

	google.golang.org/grpc/grpclog/internal
		loggerv2.go#L110: var sprint = fmt.Sprint

	google.golang.org/grpc/internal/channelz
		logging.go#L32: 		Desc:     fmt.Sprint(args...),
		logging.go#L48: 		Desc:     fmt.Sprint(args...),
		logging.go#L64: 		Desc:     fmt.Sprint(args...),

	google.golang.org/grpc/internal/serviceconfig
		duration.go#L37: 	return fmt.Sprint(time.Duration(d))

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L55: 			ss = append(ss, fmt.Sprint(vs.Get(i)))
		stringer.go#L60: 			ss = append(ss, fmt.Sprint(vs.Get(i)))
		stringer.go#L358: 			s = fmt.Sprint(v)

	google.golang.org/protobuf/reflect/protoreflect
		value_union.go#L316: 		return fmt.Sprint(v.Interface())

	html/template
		content.go#L184: 	return fmt.Sprint(args[:i]...), contentTypePlain
		escape.go#L61: 	return fmt.Sprint(args...)
		js.go#L171: 		a = fmt.Sprint(args...)

	log
		log.go#L283: 	l.Output(2, fmt.Sprint(v...))
		log.go#L301: 	s := fmt.Sprint(v...)
		log.go#L412: 	std.Output(2, fmt.Sprint(v...))
		log.go#L430: 	s := fmt.Sprint(v...)

	text/template
		funcs.go#L50: 		"print":    fmt.Sprint,
		funcs.go#L781: 		s = fmt.Sprint(args...)