# Functions
NewReadCloser creates a new Stdio.Io interface wrapper around a io.ReadCloser interface.
NewReader creates a new Stdio.Io interface wrapper around a io.Reader interface.
NewStdin creates a new stream.Io interface for piping data between processes.
NewStdinWithContext creates a new stream.Io interface for piping data between processes.
NewStdtest creates a new stream.Io interface for piping data between test processes that need to spoof an PTY.
NewTee creates a new tee stdio interface.
# Structs
ReadCloser is a wrapper around an io.ReadCloser interface.
Reader is a wrapper around an io.Reader interface.
Stdin is the default stdio.Io interface.
Stdtest is a testing Io interface user to workaround writing to the terminal.
Tee is a stream interface with two output streams (like the `tee` command on UNIX/Linux).