const unicode/utf8.MaxRune
9 uses
unicode/utf8 (current package)
utf8.go#L18: MaxRune = '\U0010FFFF' // Maximum valid Unicode code point.
utf8.go#L333: case r <= MaxRune:
utf8.go#L353: case i > MaxRune, surrogateMin <= i && i <= surrogateMax:
utf8.go#L388: case i > MaxRune, surrogateMin <= i && i <= surrogateMax:
utf8.go#L579: case surrogateMax < r && r <= MaxRune:
fmt
format.go#L155: if f.sharp && u <= utf8.MaxRune && strconv.IsPrint(rune(u)) {
format.go#L467: if c > utf8.MaxRune {
format.go#L478: if c > utf8.MaxRune {
vendor/golang.org/x/net/idna
punycode.go#L89: if n < 0 || n > utf8.MaxRune {
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |