Go Package io

From NovaOrdis Knowledge Base
Revision as of 18:38, 16 October 2023 by Ovidiu (talk | contribs) (→‎Reader)
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.