Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for levelRuns (0.09 sec)

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

    }
    
    // Definition BD13. Determine isolating run sequences.
    func (p *paragraph) determineIsolatingRunSequences() []*isolatingRunSequence {
    	levelRuns := p.determineLevelRuns()
    
    	// Compute the run that each character belongs to
    	runForCharacter := make([]int, p.Len())
    	for i, run := range levelRuns {
    		for _, index := range run {
    			runForCharacter[index] = i
    		}
    	}
    
    	sequences := []*isolatingRunSequence{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    // The following option may be a way to expose this functionality in this API.
    // // LevelFunc sets a function that associates nesting levels with the given text.
    // // The levels function will be called with monotonically increasing values for p.
    // func LevelFunc(levels func(p int) int) Option {
    // 	panic("unimplemented")
    // }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
Back to top