(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 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) |
| 862 | if done || ctx.HasError() { |
| 863 | return |
| 864 | } |
| 865 | writeMapStringInt64(ctx.buffer, value.Interface().(map[string]int64), hasGenerics) |
| 866 | } |
| 867 | |
| 868 | func (s stringInt64MapSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 869 | if value.IsNil() { |
nothing calls this directly
no test coverage detected