Comprez, library to compress structs

Hye guys, I created a new library comprez. Objective is to compress any structs, enums or union down to the binary level. The library is still under development. It would be really nice to have some of your opinions on this library (features, bugs, code improvements).

Thank you!

1 Like

One strategy you could look at in the future is rounding subnormal floats to zero. For f64s, that leaves a 52-bit-wide niche you can use for storing other enum variants in the same space.

2 Likes

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.