func unicode.IsUpper
15 uses
unicode (current package)
letter.go#L180: func IsUpper(r rune) bool {
encoding/gob
type.go#L559: return unicode.IsUpper(rune)
github.com/go-git/gcfg
set.go#L37: if unicode.IsLetter(r0) && !unicode.IsLower(r0) && !unicode.IsUpper(r0) {
github.com/google/go-cmp/cmp
path.go#L377: return unicode.IsUpper(r)
github.com/google/go-cmp/cmp/cmpopts
ignore.go#L148: return unicode.IsUpper(r)
go/doc
comment.go#L222: if !unicode.IsLetter(r) || !unicode.IsUpper(r) {
synopsis.go#L22: if q == ' ' && p == '.' && (!unicode.IsUpper(pp) || unicode.IsUpper(ppp)) {
go/token
token.go#L318: return unicode.IsUpper(ch)
golang.org/x/pkgsite/internal/database
reflect.go#L62: if unicode.IsUpper(r) {
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
idents.go#L360: return unicode.IsUpper(r)
render.go#L335: if !unicode.IsLetter(r) || !unicode.IsUpper(r) {
golang.org/x/pkgsite/internal/godoc/internal/doc
synopsis.go#L22: if q == ' ' && p == '.' && (!unicode.IsUpper(pp) || unicode.IsUpper(ppp)) {
golang.org/x/pkgsite/internal/postgres
searchdoc.go#L94: return !unicode.IsUpper(prev2) && (prev1 == '.' || prev1 == '!' || prev1 == '?')
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |