(elem ...string)
| 43 | } |
| 44 | |
| 45 | func (w *helpWriter) write(elem ...string) { |
| 46 | for _, s := range elem { |
| 47 | w.buf.Write([]byte(s)) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func (w *helpWriter) writeln(elem ...string) { |
| 52 | w.write(elem...) |
no outgoing calls
no test coverage detected