(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 84 | } |
| 85 | |
| 86 | func (s encodedByteSliceSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 87 | _ = hasGenerics |
| 88 | done := writeSliceRefAndType(ctx, refMode, writeType, value, s.typeID) |
| 89 | if done || ctx.HasError() { |
| 90 | return |
| 91 | } |
| 92 | s.WriteData(ctx, value) |
| 93 | } |
| 94 | |
| 95 | func (s encodedByteSliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 96 | byteSliceSerializer{}.ReadData(ctx, value) |
nothing calls this directly
no test coverage detected