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

◆ pop_front()

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

Definition at line 87 of file slice.h.

87 {
88 if (mSize == 0) {
89 return false;
90 }
91 ++mData;
92 --mSize;
93 return true;
94 }
T * mData
Definition slice.h:125
size_t mSize
Definition slice.h:126

References mData, and mSize.