(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 83 | } |
| 84 | |
| 85 | func (s arraySerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 86 | writeArrayRefAndType(ctx, refMode, writeType, value, LIST) |
| 87 | if ctx.HasError() { |
| 88 | return |
| 89 | } |
| 90 | s.WriteData(ctx, value) |
| 91 | } |
| 92 | |
| 93 | func (s arraySerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 94 | buf := ctx.Buffer() |
nothing calls this directly
no test coverage detected