Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TrailCCC (0.12 sec)

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

    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    // TrailCCC returns the CCC of the last rune in the decomposition.
    // If there is no decomposition, TrailCCC equals CCC.
    func (p Properties) TrailCCC() uint8 {
    	return ccc[p.tccc]
    }
    
    func buildRecompMap() {
    	recompMap = make(map[uint32]rune, len(recompMapPacked)/8)
    	var buf [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // If there is no decomposition, LeadCCC equals CCC.
    func (p Properties) LeadCCC() uint8 {
    	return ccc[p.ccc]
    }
    
    // TrailCCC returns the CCC of the last rune in the decomposition.
    // If there is no decomposition, TrailCCC equals CCC.
    func (p Properties) TrailCCC() uint8 {
    	return ccc[p.tccc]
    }
    
    func buildRecompMap() {
    	recompMap = make(map[uint32]rune, len(recompMapPacked)/8)
    	var buf [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top