(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 422 | } |
| 423 | |
| 424 | func (s float32SliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 425 | done := writeSliceRefAndType(ctx, refMode, writeType, value, FLOAT32_ARRAY) |
| 426 | if done || ctx.HasError() { |
| 427 | return |
| 428 | } |
| 429 | s.WriteData(ctx, value) |
| 430 | } |
| 431 | |
| 432 | func (s float32SliceSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 433 | done, typeId := readSliceRefAndType(ctx, refMode, readType, value) |
nothing calls this directly
no test coverage detected