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

◆ fetch_sub()

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

Definition at line 132 of file atomic.h.

132 {
133 T old = mValue;
134 mValue -= value;
135 return old;
136 }