WriteString appends s to the Printer's buffer.
(s string)
| 74 | |
| 75 | // WriteString appends s to the Printer's buffer. |
| 76 | func (p *Printer) WriteString(s string) { |
| 77 | p.reflow.Write([]byte(s)) |
| 78 | } |
| 79 | |
| 80 | // WriteRune appends r cto the Printer's buffer. |
| 81 | func (p *Printer) WriteRune(r rune) { |