orx-selfref-col 3.2.0

SelfRefCol is a core data structure to conveniently build safe and efficient self referential collections, such as linked lists and trees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod never;
mod on_threshold;
mod policy;
mod reclaimer;
mod state;
mod utilization;

pub use never::MemoryReclaimNever;
pub use on_threshold::MemoryReclaimOnThreshold;
pub use policy::MemoryPolicy;
pub use reclaimer::MemoryReclaimer;
pub use state::MemoryState;
pub use utilization::Utilization;