Versions in this module Expand all Collapse all v0 v0.1.0 Oct 9, 2024 Changes in this version + var StdErr = NewOut(os.Stderr) + var StdIn = NewIn(os.Stdin, int(os.Stdin.Fd())) + var StdOut = NewOut(os.Stdout) + type In struct + func NewIn(in io.ReadCloser, fd int) *In + func (i *In) Close() error + func (i *In) Read(p []byte) (n int, err error) + func (s *In) IsTerminal() bool + func (s *In) MakeRaw() error + func (s *In) Restore() error + func (s *In) Size() (width int, height int, err error) + type Out struct + func NewOut(out io.Writer) *Out + func (o *Out) SetOutput(out io.Writer) + func (o *Out) WithPrefix(prefix string) *Out + func (o *Out) Write(p []byte) (n int, err error) + func (s *Out) IsTerminal() bool + func (s *Out) MakeRaw() error + func (s *Out) Restore() error + func (s *Out) Size() (width int, height int, err error)