Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for appendNegatedTable (0.44 sec)

  1. src/regexp/syntax/parse.go

    			continue
    		}
    		for c := lo; c <= hi; c += stride {
    			r = appendRange(r, c, c)
    		}
    	}
    	return r
    }
    
    // appendNegatedTable returns the result of appending the negation of x to the class r.
    func appendNegatedTable(r []rune, x *unicode.RangeTable) []rune {
    	nextLo := '\u0000' // lo end of next class to add
    	for _, xr := range x.R16 {
    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