(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 1475 | } |
| 1476 | |
| 1477 | func (s bfloat16SliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 1478 | done := writeSliceRefAndType(ctx, refMode, writeType, value, BFLOAT16_ARRAY) |
| 1479 | if done || ctx.HasError() { |
| 1480 | return |
| 1481 | } |
| 1482 | s.WriteData(ctx, value) |
| 1483 | } |
| 1484 | |
| 1485 | func (s bfloat16SliceSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 1486 | done, typeId := readSliceRefAndType(ctx, refMode, readType, value) |
nothing calls this directly
no test coverage detected