const unicode/utf8.MaxRune
12 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#L574: case surrogateMax < r && r <= MaxRune:
fmt
format.go#L155: if f.sharp && u <= utf8.MaxRune && strconv.IsPrint(rune(u)) {
format.go#L465: if c > utf8.MaxRune {
format.go#L477: if c > utf8.MaxRune {
github.com/golang/protobuf/proto
text_decode.go#L765: if i > utf8.MaxRune {
golang.org/x/net/idna
punycode.go#L89: if n < 0 || n > utf8.MaxRune {
google.golang.org/protobuf/internal/encoding/text
decode_string.go#L122: if utf8.MaxRune < v || err != nil {
vendor/golang.org/x/net/idna
punycode.go#L89: if n < 0 || n > utf8.MaxRune {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)