1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![feature(stmt_expr_attributes)]

#[cfg(test)]
#[macro_use] extern crate std;

extern crate alloc;

/// A basic atomic linked list. 
pub mod atomic_linked_list;

/// A basic map structure which is backed by an atomic linked list. 
pub mod atomic_map;