(v interface{})
| 1472 | // JSONEncoderI is the common interface between json.Encoder and jsoniter.Encoder |
| 1473 | type JSONEncoderI interface { |
| 1474 | Encode(v interface{}) error |
| 1475 | SetIndent(prefix, indent string) |
| 1476 | SetEscapeHTML(on bool) |
| 1477 | } |
no outgoing calls