Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nextComposed (0.46 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.rb.ss = 0
    	i.rb.insertCGJ()
    	i.next = nextDecomposed
    	i.rb.ss.first(i.info)
    	buf := doNormDecomposed(i)
    	return buf
    }
    
    // nextComposed is the implementation of Next for forms NFC and NFKC.
    func nextComposed(i *Iter) []byte {
    	outp, startp := 0, i.p
    	var prevCC uint8
    	for {
    		if !i.info.isYesC() {
    			goto doNorm
    		}
    		prevCC = i.info.tccc
    		sz := int(i.info.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/iter.go

    	i.rb.ss = 0
    	i.rb.insertCGJ()
    	i.next = nextDecomposed
    	i.rb.ss.first(i.info)
    	buf := doNormDecomposed(i)
    	return buf
    }
    
    // nextComposed is the implementation of Next for forms NFC and NFKC.
    func nextComposed(i *Iter) []byte {
    	outp, startp := 0, i.p
    	var prevCC uint8
    	for {
    		if !i.info.isYesC() {
    			goto doNorm
    		}
    		prevCC = i.info.tccc
    		sz := int(i.info.size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
Back to top