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

◆ find() [2/2]

template<typename T, typename Allocator = fl::allocator<T>>
const_iterator fl::HeapVector< T, Allocator >::find ( const T & value) const
inline

Definition at line 544 of file vector.h.

544 {
545 for (const_iterator it = begin(); it != end(); ++it) {
546 if (*it == value) {
547 return it;
548 }
549 }
550 return end();
551 }