atomic-types 0.1.0

Adding explicit type system support for atomic counterparts to primitive types.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Simple crate that adds an `AtomicallySized` trait and an associated trait called
//! `Atomic<T>` that makes generic containers accross atomic types easier to implement.

#![no_std]

mod impls;
mod traits;

pub use impls::*;
pub use traits::*;