- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for ReaderFrom (0.12 sec)
-
src/bufio/bufio.go
} // ReadFrom implements [io.ReaderFrom]. If the underlying writer // supports the ReadFrom method, this calls the underlying ReadFrom. // If there is buffered data and an underlying ReadFrom, this fills // the buffer and writes it before calling ReadFrom. func (b *Writer) ReadFrom(r io.Reader) (n int64, err error) { if b.err != nil { return 0, b.err } readerFrom, readerFromOK := b.wr.(io.ReaderFrom) var m int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 12 14:39:08 UTC 2023 - 21.8K bytes - Viewed (0)