(s, prefix string, withPrefix bool)
| 104 | } |
| 105 | |
| 106 | func (b *Builder) WritePacketString(s, prefix string, withPrefix bool) *Builder { |
| 107 | return b.WritePacketBytes(utils.S2B(s), prefix, withPrefix) |
| 108 | } |
| 109 | |
| 110 | // Write for impl. io.Writer |
| 111 | func (b *Builder) Write(p []byte) (n int, err error) { |
no test coverage detected