Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resolvePairedBrackets (0.37 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    func (b bracketPairs) Len() int           { return len(b) }
    func (b bracketPairs) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    func (b bracketPairs) Less(i, j int) bool { return b[i].opener < b[j].opener }
    
    // resolvePairedBrackets runs the paired bracket part of the UBA algorithm.
    //
    // For each rune, it takes the indexes into the original string, the class the
    // bracket type (in pairTypes) and the bracket identifier (pairValues). It also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/core.go

    	for _, seq := range p.determineIsolatingRunSequences() {
    		// 3) resolving weak types
    		// Rules W1-W7.
    		seq.resolveWeakTypes()
    
    		// 4a) resolving paired brackets
    		// Rule N0
    		resolvePairedBrackets(seq)
    
    		// 4b) resolving neutral types
    		// Rules N1-N3.
    		seq.resolveNeutralTypes()
    
    		// 5) resolving implicit embedding levels
    		// Rules I1, I2.
    		seq.resolveImplicitLevels()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
Back to top