Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyCheck (0.15 sec)

  1. src/strings/builder.go

    func (b *Builder) Grow(n int) {
    	b.copyCheck()
    	if n < 0 {
    		panic("strings.Builder.Grow: negative count")
    	}
    	if cap(b.buf)-len(b.buf) < n {
    		b.grow(n)
    	}
    }
    
    // Write appends the contents of p to b's buffer.
    // Write always returns len(p), nil.
    func (b *Builder) Write(p []byte) (int, error) {
    	b.copyCheck()
    	b.buf = append(b.buf, p...)
    	return len(p), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top