(b []byte)
| 260 | } |
| 261 | |
| 262 | func (e *Encoder) write(b []byte) error { |
| 263 | _, err := e.w.Write(b) |
| 264 | return err |
| 265 | } |
| 266 | |
| 267 | func (e *Encoder) writeString(s string) error { |
| 268 | _, err := e.w.Write(stringToBytes(s)) |
no outgoing calls
no test coverage detected