Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findRunLimit (0.09 sec)

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

    				s.types[i] = AN
    			}
    		}
    	}
    
    	// Rule W5.
    	for i, t := range s.types {
    		if t == ET {
    			// locate end of sequence
    			runStart := i
    			runEnd := s.findRunLimit(runStart, ET)
    
    			// check values at ends of sequence
    			t := s.sos
    			if runStart > 0 {
    				t = s.types[runStart-1]
    			}
    			if t != EN {
    				t = s.eos
    				if runEnd < len(s.types) {
    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