(cctx *Context, off uint64)
| 85 | } |
| 86 | |
| 87 | func (n *NamedEncoder) Metadata(cctx *Context, off uint64) (uint64, ID) { |
| 88 | off, id := n.Encoder.Metadata(cctx, off) |
| 89 | return off, cctx.enter(&Named{n.name, id}) |
| 90 | } |
| 91 | |
| 92 | func (n *NamedEncoder) Write(vec vector.Any) { |
| 93 | n.Encoder.Write(vec.(*vector.Named).Any) |