(enc *Encoder)
| 32 | type testEncodingArrInterfaces []interface{} |
| 33 | |
| 34 | func (t testEncodingArrInterfaces) MarshalJSONArray(enc *Encoder) { |
| 35 | for _, e := range t { |
| 36 | enc.AddInterface(e) |
| 37 | } |
| 38 | } |
| 39 | func (t testEncodingArrInterfaces) IsNil() bool { |
| 40 | return t == nil |
| 41 | } |
nothing calls this directly
no test coverage detected