dreck 0.1.1

A safe tracing garbage collection library with minimal safety bookkeeping
Documentation
1
2
3
4
5
6
7
8
9
10
use dreck::*;

fn main() {
    new_root!(owner1, root1);
    new_root!(owner2, root2);

    let _ptr = root1.add(0);

    root!(&root2, _ptr);
}