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

◆ find() [1/2]

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

Definition at line 592 of file vector.h.

592 {
594 if (pos != end() && !mLess(value, *pos) && !mLess(*pos, value)) {
595 return pos;
596 }
597 return end();
598 }
iterator lower_bound(const T &value)
Definition vector.h:571
iterator end()
Definition vector.h:650
HeapVector< T >::iterator iterator
Definition vector.h:516

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: