Go Package io
Jump to navigation
Jump to search
External
Internal
Overview
The io package consists of a few functions, but mostly interfaces used by other packages.
Reader
Writer
ReadCloser
An interface that exposes basic Read()
and Close()
methods. The http.Request
body is a ReadCloser
. See Reader
.
Reader
An interface that exposes Read()
.