You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any enums resembling Option<~T> (a pointer and an empty variant) should be optimized to a nullable pointer. This would really help for linked containers (trees, tries, linked lists).
Additionally, there's a fair bit of space that can be used inside the pointer itself for storing the discriminant due to alignment.
The text was updated successfully, but these errors were encountered:
Any enums resembling
Option<~T>
(a pointer and an empty variant) should be optimized to a nullable pointer. This would really help for linked containers (trees, tries, linked lists).Additionally, there's a fair bit of space that can be used inside the pointer itself for storing the discriminant due to alignment.
The text was updated successfully, but these errors were encountered: