Is this still needed with the new notch optimizations? The readme says
Not only does
OptionBool
improve space efficiency as opposed toOption<bool>
But nowadays bool
, Option<bool>
, and even Option<Option<bool>>
and beyond are all the same size.