func go/scanner.lower
11 uses
go/scanner (current package)
scanner.go#L343: return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)
scanner.go#L362: case 'a' <= lower(ch) && lower(ch) <= 'f':
scanner.go#L363: return int(lower(ch) - 'a' + 10)
scanner.go#L368: func lower(ch rune) rune { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter
scanner.go#L370: func isHex(ch rune) bool { return '0' <= ch && ch <= '9' || 'a' <= lower(ch) && lower(ch) <= 'f' }
scanner.go#L418: switch lower(s.ch) {
scanner.go#L451: if e := lower(s.ch); e == 'e' || e == 'p' {
scanner.go#L511: x1 = lower(rune(x[1]))
 |
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. |