FastLED
3.9.15
Loading...
Searching...
No Matches
◆
operator==()
[4/6]
bool
fl::Optional
< T >::operator==
(
const variant< TT, UU > &
other
)
const
inline
Definition at line
127
of file
optional.h
.
127
{
128
if
(!
other
.template
holdsTypeOf<T>
()) {
129
return
false
;
130
}
131
if
(
empty
()) {
132
return
false
;
133
}
134
if
(
other
.
empty
()) {
135
return
false
;
136
}
137
return
*
ptr
() == *
other
.template
ptr<T>
();
138
}
fl::Optional< T && >::empty
bool empty() const FL_NOEXCEPT
Definition
optional.h:170
fl::Optional< T && >::ptr
T * ptr() FL_NOEXCEPT
Definition
optional.h:172
fl::Optional::empty
bool empty() const FL_NOEXCEPT
Definition
optional.h:41
fl::Optional
Definition
optional.h:20
fl
Optional< T && >
Generated on Tue Jun 16 2026 00:07:06 for FastLED by
1.13.2