Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for flushCopy (0.18 sec)

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

    }
    
    func flushTransform(rb *reorderBuffer) bool {
    	// Write out (must fully fit in dst, or else it is an ErrShortDst).
    	if len(rb.out) < rb.nrune*utf8.UTFMax {
    		return false
    	}
    	rb.out = rb.out[rb.flushCopy(rb.out):]
    	return true
    }
    
    var errs = []error{nil, transform.ErrShortDst, transform.ErrShortSrc}
    
    // transform implements the transform.Transformer interface. It is only called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    }
    
    func flushTransform(rb *reorderBuffer) bool {
    	// Write out (must fully fit in dst, or else it is an ErrShortDst).
    	if len(rb.out) < rb.nrune*utf8.UTFMax {
    		return false
    	}
    	rb.out = rb.out[rb.flushCopy(rb.out):]
    	return true
    }
    
    var errs = []error{nil, transform.ErrShortDst, transform.ErrShortSrc}
    
    // transform implements the transform.Transformer interface. It is only called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top