Write the provided bytes
(p []byte)
| 50 | |
| 51 | // Write the provided bytes |
| 52 | func (w *Writer) Write(p []byte) (n int, err error) { |
| 53 | return w.buf.Write(p) |
| 54 | } |
| 55 | |
| 56 | // Flush should be called when refreshing the current display. |
| 57 | func (w *Writer) Flush() error { |