Abstract
In many languages, memory is managed by a garbage collector. Region based memory management forms an alternative and is used in the Rust and MLKit compilers. Most of the work is done ahead of time, by splitting the heap into regions, which have a lexical lifetime. Whereas Rust forces the
... read more