Structsยง
- Block ๐A block of allocations. This type should be owned by Context and not used directly.
- Context ๐Owns all allocations and creates objects. All objects have a lifetime tied to the borrow of their
Context
. When theContext
goes out of scope, no objects should be accessible. - RootSet ๐A global store of all gc roots. This struct should be passed to the Context when it is created.
Enumsยง
- Drop
Stack ๐Elem
Constantsยง
- SINGLETON_
CHECK ๐Ensure there is only one context per thread.
Staticsยง
- GLOBAL_
CHECK ๐Ensure there is only one global context.