(ctx *WriteContext, value reflect.Value)
| 1029 | type int64Int64MapSerializer struct{} |
| 1030 | |
| 1031 | func (s int64Int64MapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 1032 | writeMapInt64Int64(ctx.buffer, value.Interface().(map[int64]int64), false) |
| 1033 | } |
| 1034 | |
| 1035 | func (s int64Int64MapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 1036 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected