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

◆ fetch_and()

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

Definition at line 138 of file atomic.h.

138 {
139 T old = mValue;
140 mValue &= value;
141 return old;
142 }