Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isIdentASCII (0.39 sec)

  1. src/go/doc/comment/parse.go

    	for n < len(s) {
    		if c := s[n]; c < utf8.RuneSelf {
    			if isIdentASCII(c) && (n > 0 || c < '0' || c > '9') {
    				n++
    				continue
    			}
    			break
    		}
    		r, nr := utf8.DecodeRuneInString(s[n:])
    		if unicode.IsLetter(r) {
    			n += nr
    			continue
    		}
    		break
    	}
    	return s[:n], n > 0
    }
    
    // isIdentASCII reports whether c is an ASCII identifier byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top