Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isAlphanumeric (0.11 sec)

  1. src/text/template/parse/lex.go

    }
    
    // isSpace reports whether r is a space character.
    func isSpace(r rune) bool {
    	return r == ' ' || r == '\t' || r == '\r' || r == '\n'
    }
    
    // isAlphaNumeric reports whether r is an alphabetic, digit, or underscore.
    func isAlphaNumeric(r rune) bool {
    	return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
    }
    
    func hasLeftTrimMarker(s string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top