1
2
3
4
5
//! Lock-free data structures.

mod stack;

pub use self::stack::Stack;