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

◆ equals()

template<typename... Types>
template<typename T>
bool fl::Variant< Types >::equals ( const T & other) const
inline

Definition at line 146 of file variant.h.

146 {
147 if (auto p = ptr<T>()) {
148 return *p == other;
149 }
150 return false;
151 }
T * ptr()
Definition variant.h:110