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
{{ message }}
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
Owned pointers are fully-encapsulated, and do no leak any shared pointers with code outside of themselves. This means that once the owner of an owned pointer drops it, all of its memory can be immediately reclaimed safely, before the end of the allocation group has finished.
We could take advantage of this and immediately free the memory for reuse.
The text was updated successfully, but these errors were encountered:
Owned pointers are fully-encapsulated, and do no leak any shared pointers with code outside of themselves. This means that once the owner of an owned pointer drops it, all of its memory can be immediately reclaimed safely, before the end of the allocation group has finished.
We could take advantage of this and immediately free the memory for reuse.
The text was updated successfully, but these errors were encountered: