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

◆ operator==() [2/4]

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

Definition at line 86 of file optional.h.

86 {
87 if (empty()) {
88 return false;
89 }
90 return *ptr() == value;
91 }
bool empty() const
Definition optional.h:32
T * ptr()
Definition optional.h:34

References empty(), and ptr().

+ Here is the call graph for this function: