part of this operation [`Relaxed`], and using [`Release`] makes the load part [`Relaxed`]. This function may generate more efficient code than `fetch_add` on some platforms. - MSP430: `add` instead of disabling interrupts ({8,16}-bit atomics) # Examples ``` use portable_atomic::{AtomicU128, Ordering}; let foo = AtomicU128::new(0); foo.add(10, Ordering::SeqCst); assert_eq!(foo.load(Ordering::SeqCst), 10); ```