(ctx *ReadContext, value reflect.Value)
| 484 | } |
| 485 | |
| 486 | func (s float64SliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 487 | *(*[]float64)(value.Addr().UnsafePointer()) = ReadFloat64Slice(ctx.Buffer(), ctx.Err()) |
| 488 | } |
| 489 | |
| 490 | // ============================================================================ |
| 491 | // intSliceSerializer - optimized []int serialization |
no test coverage detected