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
var b bytes.Buffer b.ReadFrom(r) // b.String()