I have an io.ReadCloser object (from an http.Response object).
io.ReadCloser
http.Response
What\'s the most efficient way to convert the entire stream to a strin
strin
I like the bytes.Buffer struct. I see it has ReadFrom and String methods. I've used it with a []byte but not an io.Reader.