managed-heap 0.1.0

An implementation of virtual heap, inspired by VMs like the JVM. Currently supports automatic garbage collection, but no defragmentation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Managed Heap

An implementation of virtual heap, inspired by VMs like the JVM.
Currently supports automatic garbage collection, but no defragmentation.

# Usage

Since the crate is still WIP, there is no documentation. You can look
into the tests mod in src/managed.rs for examples though.
I will upload the project as a crate to crates.io after I've implemented 
the defragmentation algorithm.