atomic_float

Build Status codecov Docs Latest Version

This crate provides AtomicF32 and AtomicF64 types that behave almost identically to the integer atomics in the stdlib.

Usage

```rust use atomic_float::AtomicF32; use core::sync::atomic::Ordering::Relaxed;

static A_STATIC: AtomicF32 = AtomicF32::new(800.0);

// Should support the full std::sync::atomic::AtomicFoo API ASTATIC.fetchadd(30.0, Relaxed); ASTATIC.fetchsub(-55.0, Relaxed); // But also supports things that can be implemented // efficiently easily, like sign-bit operations. ASTATIC.fetchneg(Relaxed);

asserteq!(ASTATIC.load(Relaxed), -885.0); ```

License

Licensed under either of

at your option.