serdedotnet / serde

Serde.NET is a C# port of the popular Serde serialization library for Rust
https://serdedotnet.github.io/
BSD 3-Clause "New" or "Revised" License
142 stars 5 forks source link

Remove Option and use bit array #125

Closed agocke closed 1 year ago

agocke commented 1 year ago

All we need is to track assignment, so this is much more efficiently done using a bit array instead of individual Option variables.

Fixes #109