(ctx *ReadContext, value reflect.Value)
| 408 | } |
| 409 | |
| 410 | func (s uint64SliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 411 | *(*[]uint64)(value.Addr().UnsafePointer()) = ReadUint64Slice(ctx.Buffer(), ctx.Err()) |
| 412 | } |
| 413 | |
| 414 | // ============================================================================ |
| 415 | // float32SliceSerializer - optimized []float32 serialization |
no test coverage detected