(ctx *WriteContext, value reflect.Value)
| 994 | type int32Int32MapSerializer struct{} |
| 995 | |
| 996 | func (s int32Int32MapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 997 | writeMapInt32Int32(ctx.buffer, value.Interface().(map[int32]int32), false) |
| 998 | } |
| 999 | |
| 1000 | func (s int32Int32MapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 1001 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected