WriteString implements Writer.
(s string)
| 192 | |
| 193 | // WriteString implements Writer. |
| 194 | func (w *zcWriter) WriteString(s string) (n int, err error) { |
| 195 | return w.buf.WriteString(s) |
| 196 | } |
| 197 | |
| 198 | // WriteBinary implements Writer. |
| 199 | func (w *zcWriter) WriteBinary(b []byte) (n int, err error) { |
nothing calls this directly
no test coverage detected