(ctx *ReadContext, value reflect.Value)
| 446 | } |
| 447 | |
| 448 | func (s float32SliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 449 | *(*[]float32)(value.Addr().UnsafePointer()) = ReadFloat32Slice(ctx.Buffer(), ctx.Err()) |
| 450 | } |
| 451 | |
| 452 | // ============================================================================ |
| 453 | // float64SliceSerializer - optimized []float64 serialization |
no test coverage detected