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

◆ pop_front()

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

Definition at line 166 of file slice.h.

166 {
167 if (mSize == 0) {
168 return false;
169 }
170 ++mData;
171 --mSize;
172 return true;
173 }
T * mData
Definition slice.h:194
fl::size mSize
Definition slice.h:195

References mData, and mSize.