Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ReadLineBytes (0.17 sec)

  1. src/net/textproto/reader.go

    // eliding the final \n or \r\n from the returned string.
    func (r *Reader) ReadLine() (string, error) {
    	line, err := r.readLineSlice(-1)
    	return string(line), err
    }
    
    // ReadLineBytes is like [Reader.ReadLine] but returns a []byte instead of a string.
    func (r *Reader) ReadLineBytes() ([]byte, error) {
    	line, err := r.readLineSlice(-1)
    	if line != nil {
    		line = bytes.Clone(line)
    	}
    	return line, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Conn).ReadContinuedLineBytes", Method, 0},
    		{"(*Conn).ReadDotBytes", Method, 0},
    		{"(*Conn).ReadDotLines", Method, 0},
    		{"(*Conn).ReadLine", Method, 0},
    		{"(*Conn).ReadLineBytes", Method, 0},
    		{"(*Conn).ReadMIMEHeader", Method, 0},
    		{"(*Conn).ReadResponse", Method, 0},
    		{"(*Conn).StartRequest", Method, 0},
    		{"(*Conn).StartResponse", Method, 0},
    		{"(*Error).Error", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg net/textproto, method (*Conn) ReadDotBytes() ([]uint8, error)
    pkg net/textproto, method (*Conn) ReadDotLines() ([]string, error)
    pkg net/textproto, method (*Conn) ReadLine() (string, error)
    pkg net/textproto, method (*Conn) ReadLineBytes() ([]uint8, error)
    pkg net/textproto, method (*Conn) ReadMIMEHeader() (MIMEHeader, error)
    pkg net/textproto, method (*Conn) ReadResponse(int) (int, string, error)
    pkg net/textproto, method (*Conn) StartRequest(uint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top