cdpt 0.1.0

An automatic, safe, and concurrent garbage collector for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Concurrent data structures used internally by the collector.
//!
//! Nothing here is part of the public API.

pub(crate) mod hash_set;
mod queue;
mod reusable_slots;

pub(crate) use queue::*;
pub(crate) use reusable_slots::*;