icerpc / slicec

The Slice compiler library
Apache License 2.0
13 stars 5 forks source link

Add Support for `compact` Enums #681

Closed InsertCreativityHere closed 9 months ago

InsertCreativityHere commented 9 months ago

With the introduction of enums with associated fields, we also added the ability for enumerators to hold tagged fields. Like we do with structs, it would be good to support marking enums as compact, for users who want to opt-out of the extensibility provided by tags, in exchange for saving 1 byte by omitting TagEndMarker.

InsertCreativityHere commented 9 months ago

This was implemented in #686.