FastLED
3.9.15
Loading...
Searching...
No Matches
◆
operator=()
[1/2]
template<typename T, typename Allocator = fl::allocator<T>>
deque
&
fl::deque
< T, Allocator >::operator=
(
const
deque
< T, Allocator > &
other
)
inline
Definition at line
188
of file
deque.h
.
188
{
189
if
(
this
!= &
other
) {
190
clear
();
191
for
(
fl::size
i
= 0;
i
<
other
.
size
(); ++
i
) {
192
push_back
(
other
[
i
]);
193
}
194
}
195
return
*
this
;
196
}
fl::deque::clear
void clear()
Definition
deque.h:292
fl::deque::size
fl::size size() const
Definition
deque.h:283
fl::deque::push_back
void push_back(const T &value)
Definition
deque.h:298
fl::deque
Definition
deque.h:17
fl
deque
Generated on Fri Aug 22 2025 20:59:36 for FastLED by
1.13.2