Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Howard (0.21 sec)

  1. src/bufio/bufio.go

    			sw, tryStringWriter = b.wr.(io.StringWriter)
    		}
    		if b.Buffered() == 0 && tryStringWriter {
    			// Large write, empty buffer, and the underlying writer supports
    			// WriteString: forward the write to the underlying StringWriter.
    			// This avoids an extra copy.
    			n, b.err = sw.WriteString(s)
    		} else {
    			n = copy(b.buf[b.n:], s)
    			b.n += n
    			b.Flush()
    		}
    		nn += n
    		s = s[n:]
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top