(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 928 | } |
| 929 | |
| 930 | func (s stringFloat64MapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 931 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
| 932 | if done || ctx.HasError() { |
| 933 | return |
| 934 | } |
| 935 | writeMapStringFloat64(ctx.buffer, value.Interface().(map[string]float64), hasGenerics) |
| 936 | } |
| 937 | |
| 938 | func (s stringFloat64MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 939 | if value.IsNil() { |
nothing calls this directly
no test coverage detected