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

◆ find() [2/2]

template<typename T>
const_iterator fl::list< T >::find ( const T & value) const
inline

Definition at line 617 of file list.h.

617 {
618 for (const_iterator it = begin(); it != end(); ++it) {
619 if (*it == value) {
620 return it;
621 }
622 }
623 return end();
624 }
iterator end()
Definition list.h:281
iterator begin()
Definition list.h:273
A doubly-linked list container.
Definition list.h:21

References begin(), end(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: