| 9 | ) |
| 10 | |
| 11 | type MapEncoder struct { |
| 12 | keys Encoder |
| 13 | values Encoder |
| 14 | offsets *offsetsEncoder |
| 15 | count uint32 |
| 16 | } |
| 17 | |
| 18 | func NewMapEncoder(cctx *Context, typ *super.TypeMap) *MapEncoder { |
| 19 | return &MapEncoder{ |
nothing calls this directly
no outgoing calls
no test coverage detected