(group *errgroup.Group)
| 44 | } |
| 45 | |
| 46 | func (f *FloatEncoder) Encode(group *errgroup.Group) { |
| 47 | group.Go(func() error { |
| 48 | bytes := slices.Clone(byteconv.ReinterpretSlice[byte](f.vals)) |
| 49 | var err error |
| 50 | f.fmt, f.out, err = compressBuffer(bytes) |
| 51 | return err |
| 52 | }) |
| 53 | } |
| 54 | |
| 55 | func (u *FloatEncoder) Metadata(cctx *Context, off uint64) (uint64, ID) { |
| 56 | loc := Segment{ |
nothing calls this directly
no test coverage detected