(ctx *WriteContext, value reflect.Value)
| 924 | type stringFloat64MapSerializer struct{} |
| 925 | |
| 926 | func (s stringFloat64MapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 927 | writeMapStringFloat64(ctx.buffer, value.Interface().(map[string]float64), false) |
| 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) |
nothing calls this directly
no test coverage detected