(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 48 | } |
| 49 | |
| 50 | func (s byteSliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 51 | done := writeSliceRefAndType(ctx, refMode, writeType, value, BINARY) |
| 52 | if done || ctx.HasError() { |
| 53 | return |
| 54 | } |
| 55 | s.WriteData(ctx, value) |
| 56 | } |
| 57 | |
| 58 | func (s byteSliceSerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 59 | done, typeId := readSliceRefAndType(ctx, refMode, readType, value) |
nothing calls this directly
no test coverage detected