Back to Developer Roadmap

Arc

src/data/roadmaps/rust/content/[email protected]

4.0525 B
Original Source

Arc

Arc<T> (Atomic Reference Counting) is a thread-safe smart pointer for sharing immutable data across multiple threads. It uses atomic operations to track reference counts, allowing multiple ownership of heap-allocated data. When the reference count reaches zero, the data is automatically cleaned up.

Visit the following resources to learn more: