Expand description
Memory-management tools for real-time audio and other latency-critical scenarios.
Owned
andShared
are smart pointers analogous toBox
andArc
which add their contents to a queue for deferred collection when dropped.Collector
is used to process the drop queue.Node
provides a lower-level interface for implementing custom smart pointers or data structures.SharedCell
implements a mutable memory location holding aShared
pointer that can be used by multiple readers and writers in a thread-safe manner.