(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 217 | } |
| 218 | |
| 219 | func (s *arrayConcreteValueSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 220 | writeArrayRefAndType(ctx, refMode, writeType, value, LIST) |
| 221 | if ctx.HasError() { |
| 222 | return |
| 223 | } |
| 224 | s.WriteData(ctx, value) |
| 225 | } |
| 226 | |
| 227 | func (s *arrayConcreteValueSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 228 | buf := ctx.Buffer() |
nothing calls this directly
no test coverage detected