An ergonomic tracing garbage collector that supports mark 'n sweep garbage collection.
```rust use broom::{Handle, Trace, Tracer, Heap};
// The type you want the heap to contain
pub enum Object {
Num(f64),
List(Vec
// Tell the garbage collector how to explore a graph of this object
impl Trace
// Create a new heap let mut heap = Heap::default();
// Temporary objects are cheaper than rooted objects, but don't survive heap cleans let a = heap.inserttemp(Object::Num(42.0)); let b = heap.inserttemp(Object::Num(1337.0));
// Turn the numbers into a rooted list let c = heap.insert(Object::List(vec![a, b]));
// Change one of the numbers - this is safe, even if the object is self-referential! heap.mutate(a, |a| *a = Object::Num(256.0));
// Clean up unused heap objects heap.clean();
// a, b and c are all kept alive because c is rooted and a and b are its children assert!(heap.contains(a), true); assert!(heap.contains(b), true); assert!(heap.contains(c), true); ```
There are a few things I want to do with broom
if I get the time:
If you're interested in working on any of these things, feel free to open a pull request!