Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendFoldedRange (0.12 sec)

  1. src/regexp/syntax/parse.go

    const (
    	// minimum and maximum runes involved in folding.
    	// checked during test.
    	minFold = 0x0041
    	maxFold = 0x1e943
    )
    
    // appendFoldedRange returns the result of appending the range lo-hi
    // and its case folding-equivalent runes to the class r.
    func appendFoldedRange(r []rune, lo, hi rune) []rune {
    	// Optimizations.
    	if lo <= minFold && hi >= maxFold {
    		// Range is full: folding can't add more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top