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 128 of file variant.h.

128 {
129 if (auto p = ptr<T>()) {
130 return *p == other;
131 }
132 return false;
133 }
T * ptr()
Definition variant.h:106