FastLED 3.9.15
Loading...
Searching...
No Matches

◆ exchange()

template<typename T>
T fl::AtomicFake< T >::exchange ( T value,
memory_order = memory_order_seq_cst )
inline

Definition at line 69 of file atomic.h.

69 {
70 T old = mValue;
71 mValue = value;
72 return old;
73 }
T volatile mValue
Definition atomic.h:193