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

620 {
621 for (const_iterator it = begin(); it != end(); ++it) {
622 if (*it == value) {
623 return it;
624 }
625 }
626 return end();
627 }