FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ find() [1/2]

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

Definition at line 701 of file vector.h.

701 {
703 if (pos != end() && !mLess(value, *pos) && !mLess(*pos, value)) {
704 return pos;
705 }
706 return end();
707 }
iterator lower_bound(const T &value)
Definition vector.h:680
iterator end()
Definition vector.h:753
HeapVector< T >::iterator iterator
Definition vector.h:628

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: