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

◆ fetch_or()

template<typename T>
T fl::AtomicFake< T >::fetch_or ( T value)
inline

Definition at line 144 of file atomic.h.

144 {
145 T old = mValue;
146 mValue |= value;
147 return old;
148 }