(b []byte)
| 147 | } |
| 148 | |
| 149 | func (wb *writeBuffer) Write(b []byte) (int, error) { |
| 150 | return wb.w.Write(b) |
| 151 | } |
| 152 | |
| 153 | func (wb *writeBuffer) WriteString(s string) (int, error) { |
| 154 | return io.WriteString(wb.w, s) |
no outgoing calls
no test coverage detected