Write writes to the output stream.
(p []byte)
| 38 | |
| 39 | // Write writes to the output stream. |
| 40 | func (o *Out) Write(p []byte) (int, error) { |
| 41 | return o.out.Write(p) |
| 42 | } |
| 43 | |
| 44 | // IsTerminal returns whether this stream is connected to a terminal. |
| 45 | func (o *Out) IsTerminal() bool { |
no outgoing calls