cgc

cgc is a copying garbage collector.

Advantages

Disadvantages

Why copying GC?

This kind of GC is very simple to implement and use and got good perfomance,and there are only one problem: memory usage may be twice as high compared to other algorithms.

How to use

Just add cgc to your crate dependencies: toml [dependencies] cgc = "*"

And then start coding: ```rust use cgc::{gc_allocate,Collectable,GCValue};

pub struct A;

impl Collectable for A { fn size(&self) -> usize { std::mem::size_of::() } }

pub struct Foo(Vec);

impl Collectable { fn child(&self) -> Vec> { self.0.iter().map(|x| *x).collect() }

fn size(&self) -> usize {
    std::mem::size_of::<Self>()
}

}

fn main() { let foo = gc_allocate(Foo(vec![]));

foo.borrow_mut().0.push(A);

}

```