atomic_float
This crate provides AtomicF32
and AtomicF64
types that behave almost identically to the integer atomics in the stdlib.
```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); ```
Licensed under either of
at your option.