Garbage collection inspired by CPython's implementation.
This library provides a type Cc<T>
. It provides shared reference-counting pointer, similar to stdlib Rc<T>
. Unlike Rc
, reference cycles in Cc
can be collected.
If all values can be freed by just reference-counting, the collector used by this library does not take extra memory. This is different from some other implementations, which require manual collection to free the extra memory used by the collector.
```rust use gcmodule::{Cc, Trace}; use std::cell::RefCell;
type List = Cc
For customized structures, they need to implement the Trace
interface. That can be done by #[derive(Trace)]
.
```rust use gcmodule::{Cc, Trace}; use std::cell::RefCell;
struct List(RefCell
Refer to the documentation for more examples and technical details.
Cc<T>
and Trace
are similar, or even compatible.gcmodule
is conceptually simpler. There is no need for the "colors" concept.bacon-rajan-cc
requires manual collection to release GC metadata (but not the tracked object) even if the reference count logically drops to 0. See this commit message for some details.rcgc
takes a novel approach - the collector holds strong references while everywhere else uses weak references.rcgc
requires manual collection to release actual objects even if the reference count of objects (logically) drops to 0.