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 827 of file vector.h.

827 {
829 if (pos != end() && !mLess(value, *pos) && !mLess(*pos, value)) {
830 return pos;
831 }
832 return end();
833 }
iterator lower_bound(const T &value)
Definition vector.h:806
iterator end()
Definition vector.h:879
HeapVector< T >::iterator iterator
Definition vector.h:754