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

◆ find() [1/2]

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

Definition at line 611 of file vector.h.

611 {
612 for (iterator it = begin(); it != end(); ++it) {
613 if (*it == value) {
614 return it;
615 }
616 }
617 return end();
618 }