MCPcopy Create free account
hub / github.com/golang/mobile / initialUpper

Function initialUpper

internal/importers/java/java.go:1177–1183  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

1175}
1176
1177func initialUpper(s string) string {
1178 if s == "" {
1179 return ""
1180 }
1181 r, n := utf8.DecodeRuneInString(s)
1182 return string(unicode.ToUpper(r)) + s[n:]
1183}

Callers 1

scanClassMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected