Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyXOR (0.06 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/context.go

    func (c *context) copy() bool {
    	return c.writeBytes(c.src[c.pSrc : c.pSrc+c.sz])
    }
    
    // copyXOR copies the current rune to dst and modifies it by applying the XOR
    // pattern of the case info. It is the responsibility of the caller to ensure
    // that this is a rune with a XOR pattern defined.
    func (c *context) copyXOR() bool {
    	if !c.copy() {
    		return false
    	}
    	if c.info&xorIndexBit == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top