use ;
/// given some integer type `T`, returns the corresponding atomic type for it.
/// for example, `Atomic<u32>` is [`AtomicU32`].
/// this allows writing code in a more generic manner.
pub type Atomic<T> = AtomicType;
/// represents an integer type that has a corresponding atomic type.
=> ;
}
impl_has_atomic_type!
impl_has_atomic_type!
impl_has_atomic_type!