`] makes the load part [`Relaxed`]. This function may generate more efficient code than `fetch_or` on some platforms. - x86/x86_64: `lock or` instead of `cmpxchg` loop ({8,16,32}-bit atomics on x86, but additionally 64-bit atomics on x86_64) - MSP430: `or` instead of disabling interrupts ({8,16}-bit atomics) Note: On x86/x86_64, the use of either function should not usually affect the generated code, because LLVM can properly optimize the case where the result is unused. # Examples ``` use portable_atomic::{AtomicU128, Ordering}; let foo = AtomicU128::new(0b101101); assert_eq!(foo.fetch_or(0b110011, Ordering::SeqCst), 0b101101); assert_eq!(foo.load(Ordering::SeqCst), 0b111111); ```