(ctx *WriteContext, value reflect.Value)
| 1064 | type intIntMapSerializer struct{} |
| 1065 | |
| 1066 | func (s intIntMapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 1067 | writeMapIntInt(ctx.buffer, value.Interface().(map[int]int), false) |
| 1068 | } |
| 1069 | |
| 1070 | func (s intIntMapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 1071 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected