swym 0.1.0-preview

Transactional memory for rust
1
2
3
4
5
6
7
8
9
10
11
pub mod debug_alloc;
pub mod dyn_vec;
#[macro_use]
pub mod fvec;

pub use self::{dyn_vec::DynVec, fvec::FVec};

#[cfg(feature = "debug-alloc")]
pub type DefaultAlloc = self::debug_alloc::DebugAlloc<std::alloc::Global>;
#[cfg(not(feature = "debug-alloc"))]
pub type DefaultAlloc = std::alloc::Global;