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

◆ swap() [2/2]

template<typename T, typename Allocator = fl::allocator<T>>
void fl::HeapVector< T, Allocator >::swap ( iterator a,
iterator b )
inline

Definition at line 594 of file vector.h.

594 {
595 T temp = *a;
596 *a = *b;
597 *b = temp;
598 }