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 78 of file optional.h.

78 {
79 if (empty()) {
80 return false;
81 }
82 return *ptr() == value;
83 }
bool empty() const
Definition optional.h:29
T * ptr()
Definition optional.h:31

References empty(), and ptr().

+ Here is the call graph for this function: