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

◆ pop_front()

template<typename T>
bool fl::Slice< T >::pop_front ( )
inline

Definition at line 116 of file slice.h.

116 {
117 if (mSize == 0) {
118 return false;
119 }
120 ++mData;
121 --mSize;
122 return true;
123 }
T * mData
Definition slice.h:144
size_t mSize
Definition slice.h:145

References mData, and mSize.