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

◆ FixedVector() [3/6]

template<typename T, fl::size N>
fl::FixedVector< T, N >::FixedVector ( FixedVector< T, N > && other)
inline

Definition at line 96 of file vector.h.

96 : current_size(0) {
97 fl::swap(*this, other);
98 other.clear();
99 }
void clear()
Definition vector.h:212
fl::size current_size
Definition vector.h:341
void swap(array< T, N > &lhs, array< T, N > &rhs) noexcept(noexcept(lhs.swap(rhs)))
Definition array.h:156