- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for NewWriterSize (0.08 sec)
-
src/bufio/bufio.go
type Writer struct { err error buf []byte n int wr io.Writer } // NewWriterSize returns a new [Writer] whose buffer has at least the specified // size. If the argument io.Writer is already a [Writer] with large enough // size, it returns the underlying [Writer]. func NewWriterSize(w io.Writer, size int) *Writer { // Is it already a Writer? b, ok := w.(*Writer) if ok && len(b.buf) >= size {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 12 14:39:08 UTC 2023 - 21.8K bytes - Viewed (0)