(ctx *WriteContext, value reflect.Value)
| 152 | } |
| 153 | |
| 154 | func (s *sliceSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 155 | s.writeDataWithGenerics(ctx, value, false) |
| 156 | } |
| 157 | |
| 158 | func (s *sliceSerializer) writeDataWithGenerics(ctx *WriteContext, value reflect.Value, hasGenerics bool) { |
| 159 | length := value.Len() |
nothing calls this directly
no test coverage detected