Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/regexp/syntax/parse.go

    	R16: []unicode.Range16{{Lo: 0, Hi: 1<<16 - 1, Stride: 1}},
    	R32: []unicode.Range32{{Lo: 1 << 16, Hi: unicode.MaxRune, Stride: 1}},
    }
    
    // unicodeTable returns the unicode.RangeTable identified by name
    // and the table of additional fold-equivalent code points.
    func unicodeTable(name string) (*unicode.RangeTable, *unicode.RangeTable) {
    	// Special case: "Any" means any.
    	if name == "Any" {
    		return anyTable, anyTable
    	}
    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