Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nTrailingNonStarters (0.19 sec)

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

    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    // it is known p represents the first rune in a segment.
    func (ss *streamSafe) first(p Properties) {
    	*ss = streamSafe(p.nTrailingNonStarters())
    }
    
    // insert returns a ssState value to indicate whether a rune represented by p
    // can be inserted.
    func (ss *streamSafe) next(p Properties) ssState {
    	if *ss > maxNonStarters {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    // it is known p represents the first rune in a segment.
    func (ss *streamSafe) first(p Properties) {
    	*ss = streamSafe(p.nTrailingNonStarters())
    }
    
    // insert returns a ssState value to indicate whether a rune represented by p
    // can be inserted.
    func (ss *streamSafe) next(p Properties) ssState {
    	if *ss > maxNonStarters {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    }
    
    func (p Properties) multiSegment() bool {
    	return p.index >= firstMulti && p.index < endMulti
    }
    
    func (p Properties) nLeadingNonStarters() uint8 {
    	return p.nLead
    }
    
    func (p Properties) nTrailingNonStarters() uint8 {
    	return uint8(p.flags & 0x03)
    }
    
    // Decomposition returns the decomposition for the underlying rune
    // or nil if there is none.
    func (p Properties) Decomposition() []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)
  4. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    }
    
    func (p Properties) multiSegment() bool {
    	return p.index >= firstMulti && p.index < endMulti
    }
    
    func (p Properties) nLeadingNonStarters() uint8 {
    	return p.nLead
    }
    
    func (p Properties) nTrailingNonStarters() uint8 {
    	return uint8(p.flags & 0x03)
    }
    
    // Decomposition returns the decomposition for the underlying rune
    // or nil if there is none.
    func (p Properties) Decomposition() []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)
Back to top