(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 308 | } |
| 309 | |
| 310 | func (s arrayDynSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 311 | writeArrayRefAndType(ctx, refMode, writeType, value, LIST) |
| 312 | if ctx.HasError() { |
| 313 | return |
| 314 | } |
| 315 | s.WriteData(ctx, value) |
| 316 | } |
| 317 | |
| 318 | func (s arrayDynSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 319 | // Create a temp slice to read into, then copy back to array |
nothing calls this directly
no test coverage detected