(ctx *ReadContext, value reflect.Value)
| 294 | } |
| 295 | |
| 296 | func (s int64SliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 297 | *(*[]int64)(value.Addr().UnsafePointer()) = ReadInt64Slice(ctx.Buffer(), ctx.Err()) |
| 298 | } |
| 299 | |
| 300 | // ============================================================================ |
| 301 | // uint16SliceSerializer - optimized []uint16 serialization |
no test coverage detected