Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for insertOrdered (0.16 sec)

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

    	}
    	rb.reset()
    	return p
    }
    
    // insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.
    // It returns false if the buffer is not large enough to hold the rune.
    // It is used internally by insert and insertString only.
    func (rb *reorderBuffer) insertOrdered(info Properties) {
    	n := rb.nrune
    	b := rb.rune[:]
    	cc := info.ccc
    	if cc > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/composition.go

    	}
    	rb.reset()
    	return p
    }
    
    // insertOrdered inserts a rune in the buffer, ordered by Canonical Combining Class.
    // It returns false if the buffer is not large enough to hold the rune.
    // It is used internally by insert and insertString only.
    func (rb *reorderBuffer) insertOrdered(info Properties) {
    	n := rb.nrune
    	b := rb.rune[:]
    	cc := info.ccc
    	if cc > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
Back to top