(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 460 | } |
| 461 | |
| 462 | func (s float64SliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 463 | done := writeSliceRefAndType(ctx, refMode, writeType, value, FLOAT64_ARRAY) |
| 464 | if done || ctx.HasError() { |
| 465 | return |
| 466 | } |
| 467 | s.WriteData(ctx, value) |
| 468 | } |
| 469 | |
| 470 | func (s float64SliceSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 471 | done, typeId := readSliceRefAndType(ctx, refMode, readType, value) |
nothing calls this directly
no test coverage detected