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

◆ operator==() [2/3]

template<typename T>
bool fl::Optional< T >::operator== ( const T & value) const
inline

Definition at line 54 of file optional.h.

54 {
55 if (empty()) {
56 return false;
57 }
58 return *ptr() == value;
59 }
bool empty() const
Definition optional.h:21
T * ptr()
Definition optional.h:22

References empty(), and ptr().

+ Here is the call graph for this function: