Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasRightTrimMarker (0.13 sec)

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

    }
    
    // atRightDelim reports whether the lexer is at a right delimiter, possibly preceded by a trim marker.
    func (l *lexer) atRightDelim() (delim, trimSpaces bool) {
    	if hasRightTrimMarker(l.input[l.pos:]) && strings.HasPrefix(l.input[l.pos+trimMarkerLen:], l.rightDelim) { // With trim marker.
    		return true, true
    	}
    	if strings.HasPrefix(l.input[l.pos:], l.rightDelim) { // Without trim marker.
    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