(ctx *WriteContext, value reflect.Value)
| 854 | type stringInt64MapSerializer struct{} |
| 855 | |
| 856 | func (s stringInt64MapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 857 | writeMapStringInt64(ctx.buffer, value.Interface().(map[string]int64), false) |
| 858 | } |
| 859 | |
| 860 | func (s stringInt64MapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 861 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected