1
2
3
4
5
6
7
//! Atomic types.

mod atomic_cell;
mod consume;

pub use self::atomic_cell::AtomicCell;
pub use self::consume::AtomicConsume;