func unicode.IsLetter

20 uses

	unicode (current package)
		graphic.go#L90: func IsLetter(r rune) bool {

	bytes
		bytes.go#L743: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	database/sql
		convert.go#L34: 	if unicode.IsLetter(r) {

	encoding/json
		encode.go#L983: 		case !unicode.IsLetter(c) && !unicode.IsDigit(c):

	go/build
		build.go#L1333: 		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {

	go/build/constraint
		expr.go#L334: 		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
		expr.go#L443: 		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {

	go/doc
		comment.go#L222: 	if !unicode.IsLetter(r) || !unicode.IsUpper(r) {
		comment.go#L228: 	if !unicode.IsLetter(r) && !unicode.IsDigit(r) {

	go/scanner
		scanner.go#L348: 	return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

	go/token
		token.go#L344: 		if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {

	google.golang.org/protobuf/internal/strs
		strings.go#L75: 		if unicode.IsLetter(r) || unicode.IsDigit(r) {
		strings.go#L84: 	if token.Lookup(s).IsKeyword() || !unicode.IsLetter(r) {

	reflect
		type.go#L2401: 	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

	regexp
		regexp.go#L990: 		if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {

	strings
		strings.go#L703: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	testing
		testing.go#L1080: 			} else if unicode.IsLetter(r) || unicode.IsNumber(r) {

	text/template
		funcs.go#L132: 		case i == 0 && !unicode.IsLetter(r):
		funcs.go#L134: 		case !unicode.IsLetter(r) && !unicode.IsDigit(r):

	text/template/parse
		lex.go#L673: 	return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)