(ctx *WriteContext, value reflect.Value)
| 959 | type stringBoolMapSerializer struct{} |
| 960 | |
| 961 | func (s stringBoolMapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 962 | writeMapStringBool(ctx.buffer, value.Interface().(map[string]bool), false) |
| 963 | } |
| 964 | |
| 965 | func (s stringBoolMapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 966 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected