(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 1163 | } |
| 1164 | |
| 1165 | func (s float16SliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 1166 | done := writeSliceRefAndType(ctx, refMode, writeType, value, FLOAT16_ARRAY) |
| 1167 | if done || ctx.HasError() { |
| 1168 | return |
| 1169 | } |
| 1170 | s.WriteData(ctx, value) |
| 1171 | } |
| 1172 | |
| 1173 | func (s float16SliceSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 1174 | done, typeId := readSliceRefAndType(ctx, refMode, readType, value) |
nothing calls this directly
no test coverage detected