func unicode.IsLetter

41 uses

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

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

	contrib.go.opencensus.io/exporter/prometheus
		sanitize.go#L45: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	contrib.go.opencensus.io/exporter/stackdriver
		sanitize.go#L45: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

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

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

	github.com/ghodss/yaml
		fields.go#L327: 			if !unicode.IsLetter(c) && !unicode.IsDigit(c) {

	github.com/go-git/gcfg
		set.go#L37: 	if unicode.IsLetter(r0) && !unicode.IsLower(r0) && !unicode.IsUpper(r0) {

	github.com/go-git/gcfg/scanner
		scanner.go#L151: 	return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch >= 0x80 && unicode.IsLetter(ch)

	github.com/go-git/go-git/v5/internal/revision
		scanner.go#L108: 	if unicode.IsLetter(ch) {
		scanner.go#L109: 		return tokenizeExpression(ch, word, unicode.IsLetter, s.r)

	github.com/google/licensecheck/internal/match
		dict.go#L291: 	return unicode.IsLetter(r) || unicode.IsDigit(r) || r == '©'
		dict.go#L296: 	return unicode.IsLetter(r) || unicode.IsDigit(r) || unicode.Is(unicode.Mn, r)

	github.com/google/licensecheck/old
		normalize.go#L125: 	return unicode.IsLetter(r)

	github.com/shurcooL/sanitized_anchor_name
		main.go#L18: 		case unicode.IsLetter(r) || unicode.IsNumber(r):

	github.com/yuin/goldmark/extension
		typographer.go#L235: 				if len(line) > 1 && (unicode.IsDigit(before) || unicode.IsLetter(before)) && (unicode.IsLetter(util.ToRune(line, 1))) {

	go.opencensus.io/internal
		sanitize.go#L45: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	go/build
		build.go#L1314: 		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {
		build.go#L1873: 		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#L343: 	return 'a' <= lower(ch) && lower(ch) <= 'z' || ch == '_' || ch >= utf8.RuneSelf && unicode.IsLetter(ch)

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

	golang.org/x/mod/module
		module.go#L268: 	return unicode.IsLetter(r)

	golang.org/x/pkgsite/internal/frontend
		goldmark.go#L190: 		return !unicode.IsLetter(c) && !unicode.IsNumber(c)

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		linkify.go#L339: 					return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '.'
		render.go#L335: 	if !unicode.IsLetter(r) || !unicode.IsUpper(r) {
		render.go#L341: 	if !unicode.IsLetter(r) && !unicode.IsDigit(r) {

	golang.org/x/pkgsite/internal/symbol
		apigodoc.go#L182: 	endPkg := strings.IndexFunc(rest, func(r rune) bool { return !(unicode.IsLetter(r) || r == '.' || r == '/' || unicode.IsDigit(r)) })

	golang.org/x/xerrors
		fmt.go#L142: 		if unicode.IsLetter(r) {

	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) {

	gopkg.in/yaml.v2
		sorter.go#L44: 		al := unicode.IsLetter(ar[i])
		sorter.go#L45: 		bl := unicode.IsLetter(br[i])

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

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

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

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

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