func unicode.ToUpper

9 uses

	unicode (current package)
		letter.go#L250: func ToUpper(r rune) rune {
		letter.go#L286: 		r1 = ToUpper(r)
		letter.go#L366: 	return ToUpper(r)

	bytes
		bytes.go#L638: 	return Map(unicode.ToUpper, s)

	github.com/imdario/mergo
		map.go#L77: 			fieldName := changeInitialCase(key, unicode.ToUpper)

	github.com/jmespath/go-jmespath
		interpreter.go#L320: 	fieldName := string(unicode.ToUpper(first)) + key[n:]

	google.golang.org/protobuf/internal/strs
		strings.go#L133: 			b = append(b, byte(unicode.ToUpper(c)))
		strings.go#L153: 			b = append(b, byte(unicode.ToUpper(c)))

	strings
		strings.go#L576: 	return Map(unicode.ToUpper, s)