Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DotReader (0.08 sec)

  1. src/net/textproto/writer.go

    // translating line-ending \n into \r\n, and adding the final .\r\n line
    // when the DotWriter is closed. The caller should close the
    // DotWriter before the next call to a method on w.
    //
    // See the documentation for the [Reader.DotReader] method for details about dot-encoding.
    func (w *Writer) DotWriter() io.WriteCloser {
    	w.closeDot()
    	w.dot = &dotWriter{w: w}
    	return w.dot
    }
    
    func (w *Writer) closeDot() {
    	if w.dot != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top