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

◆ full()

template<typename T, typename LessThan>
bool fl::SortedHeapVector< T, LessThan >::full ( ) const
inline

Definition at line 630 of file vector.h.

630 {
631 if (mArray.size() >= mMaxSize) {
632 return true;
633 }
634 return mArray.full();
635 }
HeapVector< T > mArray
Definition vector.h:511