(ctx *ReadContext, value reflect.Value)
| 532 | } |
| 533 | |
| 534 | func (s intSliceSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 535 | *(*[]int)(value.Addr().UnsafePointer()) = ReadIntSlice(ctx.Buffer(), ctx.Err()) |
| 536 | } |
| 537 | |
| 538 | // ============================================================================ |
| 539 | // uintSliceSerializer - optimized []uint serialization |
no test coverage detected