Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/bufio/bufio.go

    	}
    	copy(buf[n:], frag)
    	return buf, err
    }
    
    // ReadString reads until the first occurrence of delim in the input,
    // returning a string containing the data up to and including the delimiter.
    // If ReadString encounters an error before finding a delimiter,
    // it returns the data read before the error and the error itself (often io.EOF).
    // ReadString returns err != nil if and only if the returned data does not end in
    // delim.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Sep 03 14:04:47 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top