============================================================================ boolSliceSerializer - optimized []bool serialization ============================================================================
| 112 | // ============================================================================ |
| 113 | |
| 114 | type boolSliceSerializer struct{} |
| 115 | |
| 116 | func (s boolSliceSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 117 | WriteBoolSlice(ctx.Buffer(), value.Interface().([]bool)) |
nothing calls this directly
no outgoing calls
no test coverage detected