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

◆ find() [1/2]

template<typename T, typename LessThan = fl::less<T>>
iterator fl::SortedHeapVector< T, LessThan >::find ( const T & value)
inline

Definition at line 747 of file vector.h.

747 {
749 if (pos != end() && !mLess(value, *pos) && !mLess(*pos, value)) {
750 return pos;
751 }
752 return end();
753 }
iterator lower_bound(const T &value)
Definition vector.h:726
iterator end()
Definition vector.h:799
HeapVector< T >::iterator iterator
Definition vector.h:674

Referenced by fl::iterator< Pair, PairLess >::erase(), fl::iterator< Pair, PairLess >::find(), and fl::iterator< Pair, PairLess >::has().

+ Here is the caller graph for this function: